Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Thomann2003-09-15 21:11:53 +0000
committerOlivier Thomann2003-09-15 21:11:53 +0000
commit4ebeb381c4e8c6974f665730420b70c72062bb00 (patch)
tree0d1c34edfd22f2c7b424ae7a32dc3d80a9fc479a /org.eclipse.jdt.core.tests.compiler/test.xml
parent02733ea32199eef92e7e8bc7be9f2db172e7eedd (diff)
downloadeclipse.jdt.core-4ebeb381c4e8c6974f665730420b70c72062bb00.tar.gz
eclipse.jdt.core-4ebeb381c4e8c6974f665730420b70c72062bb00.tar.xz
eclipse.jdt.core-4ebeb381c4e8c6974f665730420b70c72062bb00.zip
Include all tests for Linux except evaluation tests (run only on Windows)
Diffstat (limited to 'org.eclipse.jdt.core.tests.compiler/test.xml')
-rw-r--r--org.eclipse.jdt.core.tests.compiler/test.xml13
1 files changed, 10 insertions, 3 deletions
diff --git a/org.eclipse.jdt.core.tests.compiler/test.xml b/org.eclipse.jdt.core.tests.compiler/test.xml
index 862e2d43d0..56f1174638 100644
--- a/org.eclipse.jdt.core.tests.compiler/test.xml
+++ b/org.eclipse.jdt.core.tests.compiler/test.xml
@@ -22,6 +22,11 @@
<!-- This target defines the tests that need to be run. -->
<target name="suite">
+ <condition property="onWin32">
+ <and>
+ <os family="windows" />
+ </and>
+ </condition>
<!-- Parser tests -->
<property name="jdt-parser-folder"
value="${eclipse-home}/jdt_parser_folder"/>
@@ -44,6 +49,10 @@
value="org.eclipse.jdt.core.tests.compiler.regression.TestAll"/>
</ant>
+ <antcall target="evaluation_tests"/>
+ </target>
+
+ <target name="evaluation_tests" if="onWin32">
<!-- Evaluation tests -->
<property name="jdt-eval-folder"
value="${eclipse-home}/jdt_eval_folder"/>
@@ -54,9 +63,7 @@
<property name="classname"
value="org.eclipse.jdt.core.tests.eval.TestAll"/>
</ant>
-
- </target>
-
+ </target>
<!-- This target holds code to cleanup the testing environment after -->
<!-- after all of the tests have been run. You can use this target to -->
<!-- delete temporary files that have been created. -->

Back to the top