Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-08-22 12:56:16 +0000
committerSravan Kumar Lakkimsetti2017-08-22 12:56:16 +0000
commita8f276823097fc805039bbbc8793d8e7ce0d8f93 (patch)
tree9e87365d78d6bdd244edf92b307f635f0f2e0a8d /production/sdk
parentca4c346454aab141d8eb8c6f8de2b8a5343ef591 (diff)
downloadeclipse.platform.releng.aggregator-a8f276823097fc805039bbbc8793d8e7ce0d8f93.tar.gz
eclipse.platform.releng.aggregator-a8f276823097fc805039bbbc8793d8e7ce0d8f93.tar.xz
eclipse.platform.releng.aggregator-a8f276823097fc805039bbbc8793d8e7ce0d8f93.zip
Bug 518239: [JUnit 5] Feature patch for JUnit 5 support on 4.7
Change-Id: I917db3b9fea7074010691012315a2cf00d5c0b5b Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production/sdk')
-rwxr-xr-xproduction/sdk/promotion/startTests.sh2
-rwxr-xr-xproduction/sdk/promotion/syncDropLocation.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/production/sdk/promotion/startTests.sh b/production/sdk/promotion/startTests.sh
index d3393593d..30d0d2654 100755
--- a/production/sdk/promotion/startTests.sh
+++ b/production/sdk/promotion/startTests.sh
@@ -90,7 +90,7 @@ else
exit 1
fi
-if [[ "${buildId}" =~ ([MNIXYP]+)([[:digit:]]*)\-([[:digit:]]*) ]]
+if [[ "${buildId}" =~ ([MNIXYPU]+)([[:digit:]]*)\-([[:digit:]]*) ]]
then
# old, simpler way, if we don't do regex and input checking
#buildType=${buildId:0:1}
diff --git a/production/sdk/promotion/syncDropLocation.sh b/production/sdk/promotion/syncDropLocation.sh
index 4955aaf03..500664206 100755
--- a/production/sdk/promotion/syncDropLocation.sh
+++ b/production/sdk/promotion/syncDropLocation.sh
@@ -219,7 +219,7 @@ function startTests()
echo "DEBUG: CBI builderDropDir: ${builderDropDir}"
# finally, execute ... unless its a patch build
- if [[ "${buildType}" != "P" && "${buildType}" != "U" ]]
+ if [[ "${buildType}" != "P" ]]
then
${builderDropDir}/startTests.sh ${eclipseStream} ${buildId} ${EBUILDER_HASH}
else

Back to the top