Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-04-24 09:16:58 +0000
committerSravan Kumar Lakkimsetti2018-09-17 07:06:17 +0000
commitd607478a1ea458800c630612439ac050cbc3816b (patch)
tree3d49f9606df36cfa38f7caf36c994e747c081876 /production
parent5fa54eff7f8f666c9da6044ef33a229a09a9cf78 (diff)
downloadeclipse.platform.releng.aggregator-d607478a1ea458800c630612439ac050cbc3816b.tar.gz
eclipse.platform.releng.aggregator-d607478a1ea458800c630612439ac050cbc3816b.tar.xz
eclipse.platform.releng.aggregator-d607478a1ea458800c630612439ac050cbc3816b.zip
Bug 536766 - Drop 32 bit support in 4.10
Change-Id: I2ab35ba85b3305a371ecc76d21abd96238df9f0a Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production')
-rw-r--r--production/sdk/collectTestResults.xml9
-rwxr-xr-xproduction/sdk/promotion/updateDropLocation.sh9
-rw-r--r--production/testScripts/configuration/sdk.tests/testConfigs/win7-64/platformSpecific.properties2
-rw-r--r--production/testScripts/configuration/sdk.tests/testConfigs/win7/platformSpecific.properties2
-rw-r--r--production/testScripts/invokeTestsJSON.xml2
5 files changed, 4 insertions, 20 deletions
diff --git a/production/sdk/collectTestResults.xml b/production/sdk/collectTestResults.xml
index bb8eacd30..df95cbf65 100644
--- a/production/sdk/collectTestResults.xml
+++ b/production/sdk/collectTestResults.xml
@@ -92,15 +92,6 @@
<isset property="env.WORKSPACE"/>
</condition>
- <condition
- property="env.HUDSON_ROOT_URI"
- value="shared">
- <contains
- string="${job}"
- substring="win32"
- casesensitive="yes" />
- </condition>
-
<property
name="env.HUDSON_ROOT_URI"
value="releng" />
diff --git a/production/sdk/promotion/updateDropLocation.sh b/production/sdk/promotion/updateDropLocation.sh
index d3cd5eb37..79122d139 100755
--- a/production/sdk/promotion/updateDropLocation.sh
+++ b/production/sdk/promotion/updateDropLocation.sh
@@ -257,14 +257,7 @@ function sendTestResultsMail ()
fi
platform=$(echo ${JOB_NAME}|cut -b 12-16)
- case "$platform" in
- "win32")
- HUDSON_URL="${HUDSON_PROTOCOL}://${HUDSON_HOST}:${HUDSON_PORT}/shared/view/Eclipse and Equinox"
- ;;
- *)
- HUDSON_URL="${HUDSON_PROTOCOL}://${HUDSON_HOST}:${HUDSON_PORT}/${HUDSON_ROOT_URI}/view/Automated tests"
- ;;
- esac
+ HUDSON_URL="${HUDSON_PROTOCOL}://${HUDSON_HOST}:${HUDSON_PORT}/${HUDSON_ROOT_URI}/view/Automated tests"
# Now read "elapsed time" duration from Hudson. (The time above is the sum of all unit tests times,
# so does not include "overhead" and is deceptive.) The "-O -" means send output to standard out (instead of file).
diff --git a/production/testScripts/configuration/sdk.tests/testConfigs/win7-64/platformSpecific.properties b/production/testScripts/configuration/sdk.tests/testConfigs/win7-64/platformSpecific.properties
index ddba551ff..113391fdc 100644
--- a/production/testScripts/configuration/sdk.tests/testConfigs/win7-64/platformSpecific.properties
+++ b/production/testScripts/configuration/sdk.tests/testConfigs/win7-64/platformSpecific.properties
@@ -12,7 +12,7 @@
# This is the VM to use to run the tests, if one prefers
# to use a different one from the one that stared the whole process.
-#jvm=c\:\\Program Files\\Java\\jdk1.8.0_51\\jre\\bin\\java.exe
+#jvm=c\:\\Program Files\\Java\\jdk1.8.0_162\\jre\\bin\\java.exe
# TODO: can also list VMs to use for specific execution environments
diff --git a/production/testScripts/configuration/sdk.tests/testConfigs/win7/platformSpecific.properties b/production/testScripts/configuration/sdk.tests/testConfigs/win7/platformSpecific.properties
index 1b4323a21..c29b9ffa8 100644
--- a/production/testScripts/configuration/sdk.tests/testConfigs/win7/platformSpecific.properties
+++ b/production/testScripts/configuration/sdk.tests/testConfigs/win7/platformSpecific.properties
@@ -12,7 +12,7 @@
# This is the VM to use to run the tests, if one prefers
# to use a different one from the one that stared the whole process.
-#jvm=c\:\\Program Files\\Java\\jdk1.8.0_51\\jre\\bin\\java.exe
+#jvm=c\:\\Program Files\\Java\\jdk1.8.0_162\\jre\\bin\\java.exe
# TODO: can also list VMs to use for specific execution environments
diff --git a/production/testScripts/invokeTestsJSON.xml b/production/testScripts/invokeTestsJSON.xml
index 130dbb822..762f83cfb 100644
--- a/production/testScripts/invokeTestsJSON.xml
+++ b/production/testScripts/invokeTestsJSON.xml
@@ -50,7 +50,7 @@
for greater flexibility in what to test?)
-->
- <antcall target="triggerHudsonWinTests">
+ <antcall target="triggerHudsonTests">
<param
name="job"
value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-win32" />

Back to the top