Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-09-05 11:58:37 +0000
committerAlexander Kurtakov2018-09-05 12:00:14 +0000
commit3033b906fd4f7587c0a696db4e3f529b04dec9a7 (patch)
tree0938e33701ea23dae4826b73aa74d06359c934ba /production
parent1017adbec0f1c04eb0e7b1964e12bc3556cdd39e (diff)
downloadeclipse.platform.releng.aggregator-3033b906fd4f7587c0a696db4e3f529b04dec9a7.tar.gz
eclipse.platform.releng.aggregator-3033b906fd4f7587c0a696db4e3f529b04dec9a7.tar.xz
eclipse.platform.releng.aggregator-3033b906fd4f7587c0a696db4e3f529b04dec9a7.zip
Bug 538522 - Prep work for 4.10 and open master for development
Fix regexp to match non only single digit versions. Change-Id: Icec29df55f907ece2943414e7011c1e146589762 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'production')
-rw-r--r--production/testScripts/invokeTestsJSON.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/production/testScripts/invokeTestsJSON.xml b/production/testScripts/invokeTestsJSON.xml
index e7789bc47..0aa1bb90d 100644
--- a/production/testScripts/invokeTestsJSON.xml
+++ b/production/testScripts/invokeTestsJSON.xml
@@ -444,7 +444,7 @@ t SPDX-License-Identifier: EPL-2.0.
message="eclipseStream must be provided by caller" />
<condition property="streamOK">
<matches
- pattern="\d\.\d\.\d"
+ pattern="\d+\.\d+\.\d+"
string="${eclipseStream}" />
</condition>
<fail

Back to the top