Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2016-09-26 18:39:29 +0000
committerSravan Kumar Lakkimsetti2016-09-26 18:39:29 +0000
commitd3cf05ea4d6dbc61db744ca663ecbc6ce65c8ebd (patch)
tree06e8ef551209f7cacf54af838990ae3abbd3c764
parent8fcd1b7e87d8b7af46d643759ba7a6850c3d74a8 (diff)
downloadeclipse.platform.releng.aggregator-d3cf05ea4d6dbc61db744ca663ecbc6ce65c8ebd.tar.gz
eclipse.platform.releng.aggregator-d3cf05ea4d6dbc61db744ca663ecbc6ce65c8ebd.tar.xz
eclipse.platform.releng.aggregator-d3cf05ea4d6dbc61db744ca663ecbc6ce65c8ebd.zip
Bug 502198 - Move linux tests to platform hipp from shared hipp
Change-Id: I28710ad95d3b0b18c635eeb9ed1e1ee3269487f9 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--production/sdk/collectTestResults.xml8
-rw-r--r--production/testScripts/invokeTestsJSON.xml16
2 files changed, 16 insertions, 8 deletions
diff --git a/production/sdk/collectTestResults.xml b/production/sdk/collectTestResults.xml
index 43a8f757a..a26ac5f5f 100644
--- a/production/sdk/collectTestResults.xml
+++ b/production/sdk/collectTestResults.xml
@@ -100,6 +100,14 @@
substring="cen"
casesensitive="yes" />
</condition>
+ <condition
+ property="env.HUDSON_ROOT_URI"
+ value="platform">
+ <contains
+ string="${job}"
+ substring="lin"
+ casesensitive="yes" />
+ </condition>
<property
name="env.HUDSON_ROOT_URI"
value="shared" />
diff --git a/production/testScripts/invokeTestsJSON.xml b/production/testScripts/invokeTestsJSON.xml
index 71f61a495..6803e473c 100644
--- a/production/testScripts/invokeTestsJSON.xml
+++ b/production/testScripts/invokeTestsJSON.xml
@@ -57,12 +57,6 @@
<antcall target="triggerHudsonTests">
<param
name="job"
- value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-lin64" />
- </antcall>
-
- <antcall target="triggerHudsonTests">
- <param
- name="job"
value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-mac64" />
</antcall>
@@ -78,12 +72,18 @@
-->
- <antcall target="triggerHudsonGTK3Tests">
+ <antcall target="triggerHudsonLinuxTests">
<param
name="job"
value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-cen64" />
</antcall>
+ <antcall target="triggerHudsonLinuxTests">
+ <param
+ name="job"
+ value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-lin64" />
+ </antcall>
+
</target>
<target
@@ -199,7 +199,7 @@
</antcall>
</target>
<target
- name="triggerHudsonGTK3Tests"
+ name="triggerHudsonLinuxTests"
depends="init">
<!--
baseURL used to be "required parameter" for Hudson job, but seemed overly complicated so

Back to the top