Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2020-01-23 08:32:54 +0000
committerNoopur Gupta2020-01-23 08:32:54 +0000
commit5817007b96b6ea7f0b8425ff687960f03e2ccdc7 (patch)
tree5fa7d8a97e0c2e25079e8d47f05a1636dbbd95b0
parent77f1ead9abc637fb9bca8ee92a02b02f380d01ad (diff)
downloadeclipse.platform.releng.aggregator-5817007b96b6ea7f0b8425ff687960f03e2ccdc7.tar.gz
eclipse.platform.releng.aggregator-5817007b96b6ea7f0b8425ff687960f03e2ccdc7.tar.xz
eclipse.platform.releng.aggregator-5817007b96b6ea7f0b8425ff687960f03e2ccdc7.zip
Bug 559397: Create test configuration for JDK 14 for Y-builds and
-rw-r--r--production/testScripts/runTests2.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/production/testScripts/runTests2.xml b/production/testScripts/runTests2.xml
index cdb9ae93a..fc2045b78 100644
--- a/production/testScripts/runTests2.xml
+++ b/production/testScripts/runTests2.xml
@@ -248,6 +248,24 @@
unless="testPlatform">
<condition
property="testPlatform"
+ value="linuxjava14">
+ <and>
+ <equals
+ arg1="${osgi.os}"
+ arg2="linux" />
+ <equals
+ arg1="${osgi.ws}"
+ arg2="gtk" />
+ <equals
+ arg1="${osgi.arch}"
+ arg2="x86_64" />
+ <equals
+ arg1="${jvm.version}"
+ arg2="java14" />
+ </and>
+ </condition>
+ <condition
+ property="testPlatform"
value="linuxjava12">
<and>
<equals
@@ -435,6 +453,13 @@
value="getlinzips">
<equals
arg1="${testPlatform}"
+ arg2="linuxjava14" />
+ </condition>
+ <condition
+ property="getArtifacts"
+ value="getlinzips">
+ <equals
+ arg1="${testPlatform}"
arg2="linuxjava12" />
</condition>
<condition

Back to the top