Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-06-19 12:48:41 +0000
committerSravan Kumar Lakkimsetti2018-06-19 12:48:41 +0000
commitd8cde6119301a59eab9da9e81cb18c891b2fdc17 (patch)
tree232b768659f29eb0512d4cd39d2ab57af9186f08
parentea9da68cbb6148fd9572c00b2c5ee0daf11291b1 (diff)
downloadeclipse.platform.releng.aggregator-d8cde6119301a59eab9da9e81cb18c891b2fdc17.tar.gz
eclipse.platform.releng.aggregator-d8cde6119301a59eab9da9e81cb18c891b2fdc17.tar.xz
eclipse.platform.releng.aggregator-d8cde6119301a59eab9da9e81cb18c891b2fdc17.zip
Bug 532933 - Add new test configuration that runs with Java 10
Change-Id: Ie41dce075a9f9e26beb03a33a96344caacd21a4a Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--production/testScripts/runTests2.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/production/testScripts/runTests2.xml b/production/testScripts/runTests2.xml
index 9a91aea0f..1207d0282 100644
--- a/production/testScripts/runTests2.xml
+++ b/production/testScripts/runTests2.xml
@@ -1300,7 +1300,7 @@
project.setProperty("javaMajorVersion", "0");
}
} else {
- var pattern = new RegExp(/^\D*(\d+)\..*/);
+ var pattern = new RegExp(/^\D*\"(\d+)[\.\"].*/);
var sArray = pattern.exec(javaVer);
if (sArray != null) {
var length = sArray.length;

Back to the top