Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2020-05-20 15:57:24 +0000
committerSravan Kumar Lakkimsetti2020-05-20 15:57:24 +0000
commite428dbaefb4070e44ea41370d023f321958840dd (patch)
tree1aadf84a58f73e84b94ff01d51d398a082127fe0 /production
parent4e2a7f056d2d277bfd79fd57d831ac166dd91ef8 (diff)
downloadeclipse.platform.releng.aggregator-e428dbaefb4070e44ea41370d023f321958840dd.tar.gz
eclipse.platform.releng.aggregator-e428dbaefb4070e44ea41370d023f321958840dd.tar.xz
eclipse.platform.releng.aggregator-e428dbaefb4070e44ea41370d023f321958840dd.zip
Bug 563396 - Add smoke tests for ppc64le architecture
Change-Id: I09f1e6a7d7dce6a8f79ddcfac17e4234ab68bb1a Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production')
-rw-r--r--production/testScripts/configuration/sdk.tests/testScripts/test.xml15
1 files changed, 11 insertions, 4 deletions
diff --git a/production/testScripts/configuration/sdk.tests/testScripts/test.xml b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
index fdc973148..3b20524d2 100644
--- a/production/testScripts/configuration/sdk.tests/testScripts/test.xml
+++ b/production/testScripts/configuration/sdk.tests/testScripts/test.xml
@@ -213,16 +213,23 @@
</condition>
<condition
property="platformArchive"
- value="eclipse-platform-${previousReleaseVersion}-linux-gtk-${os.arch}.tar.gz">
+ value="eclipse-platform-${previousReleaseVersion}-linux-gtk-x86_64.tar.gz">
<and>
<os family="unix" />
<or>
<os arch="x86_64" />
<os arch="amd64" />
- <os arch="ppc64le" />
</or>
</and>
</condition>
+ <condition
+ property="platformArchive"
+ value="eclipse-platform-${previousReleaseVersion}-linux-gtk-ppc64le.tar.gz">
+ <and>
+ <os family="unix" />
+ <os arch="ppc64le" />
+ </and>
+ </condition>
<fail
unless="platformArchive"
@@ -931,7 +938,7 @@
</condition>
<condition
property="runtimeArchive"
- value="eclipse-SDK-${buildIdToUse}-linux-gtk-${os.arch}.tar.gz">
+ value="eclipse-SDK-${buildIdToUse}-linux-gtk-x86_64.tar.gz">
<and>
<equals
arg1="${os}"
@@ -946,7 +953,7 @@
</condition>
<condition
property="runtimeArchive"
- value="eclipse-SDK-${buildIdToUse}-linux-gtk-${os.arch}.tar.gz">
+ value="eclipse-SDK-${buildIdToUse}-linux-gtk-ppc64le.tar.gz">
<and>
<equals
arg1="${os}"

Back to the top