Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-05-23 08:58:56 +0000
committerSravan Kumar Lakkimsetti2018-05-23 08:58:56 +0000
commitf176fb5224c9cd682d3e474021b3ce313410a0aa (patch)
tree9d30f5d3731b48d7424d9c398b78768a15b5575c
parent6bcd036378f1a44bf13607beaa20e3760ffbe4f8 (diff)
downloadeclipse.platform.releng.aggregator-f176fb5224c9cd682d3e474021b3ce313410a0aa.tar.gz
eclipse.platform.releng.aggregator-f176fb5224c9cd682d3e474021b3ce313410a0aa.tar.xz
eclipse.platform.releng.aggregator-f176fb5224c9cd682d3e474021b3ce313410a0aa.zip
Revert "Bug 531438 - Need one more executor of mac slave on releng jipp"
-rw-r--r--production/sdk/collectTestResults.xml9
-rwxr-xr-xproduction/sdk/promotion/updateDropLocation.sh3
-rw-r--r--production/testScripts/configuration/sdk.tests/testConfigs/macosx/platformSpecific.properties4
-rw-r--r--production/testScripts/invokeTestsJSON.xml2
4 files changed, 15 insertions, 3 deletions
diff --git a/production/sdk/collectTestResults.xml b/production/sdk/collectTestResults.xml
index bb8eacd30..1ddf6a69e 100644
--- a/production/sdk/collectTestResults.xml
+++ b/production/sdk/collectTestResults.xml
@@ -101,6 +101,15 @@
casesensitive="yes" />
</condition>
+ <condition
+ property="env.HUDSON_ROOT_URI"
+ value="shared">
+ <contains
+ string="${job}"
+ substring="mac64"
+ 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..38eaad772 100755
--- a/production/sdk/promotion/updateDropLocation.sh
+++ b/production/sdk/promotion/updateDropLocation.sh
@@ -261,6 +261,9 @@ function sendTestResultsMail ()
"win32")
HUDSON_URL="${HUDSON_PROTOCOL}://${HUDSON_HOST}:${HUDSON_PORT}/shared/view/Eclipse and Equinox"
;;
+ "mac64")
+ 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"
;;
diff --git a/production/testScripts/configuration/sdk.tests/testConfigs/macosx/platformSpecific.properties b/production/testScripts/configuration/sdk.tests/testConfigs/macosx/platformSpecific.properties
index b5424f6c9..c2ecab447 100644
--- a/production/testScripts/configuration/sdk.tests/testConfigs/macosx/platformSpecific.properties
+++ b/production/testScripts/configuration/sdk.tests/testConfigs/macosx/platformSpecific.properties
@@ -13,7 +13,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=/Library/Java/JavaVirtualMachines/jdk1.7.0_51.jdk/Contents/Home/jre/bin/java
-jvm=/Library/Java/JavaVirtualMachines/jdk1.8.0_172.jdk/Contents/Home/jre/bin/java
+jvm=/Library/Java/JavaVirtualMachines/jdk1.8.0_51.jdk/Contents/Home/jre/bin/java
# TODO: can also list VMs to use for specific execution environments
# https://bugs.eclipse.org/bugs/show_bug.cgi?id=392213
@@ -36,4 +36,4 @@ org.eclipse.core.net.prefs=\
eclipse.preferences.version=1\n\
org.eclipse.core.net.hasMigrated=true\n
-cvstest.properties=/Users/genie.releng/cvstest.properties
+cvstest.properties=/Users/genie.shared/cvstest.properties
diff --git a/production/testScripts/invokeTestsJSON.xml b/production/testScripts/invokeTestsJSON.xml
index cb106cf65..a857f6f74 100644
--- a/production/testScripts/invokeTestsJSON.xml
+++ b/production/testScripts/invokeTestsJSON.xml
@@ -53,7 +53,7 @@
value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-win32" />
</antcall>
- <antcall target="triggerHudsonTests">
+ <antcall target="triggerHudsonWinTests">
<param
name="job"
value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-mac64" />

Back to the top