Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Thondapu2016-05-19 14:51:10 +0000
committerArun Thondapu2016-05-19 18:20:59 +0000
commitbd427c591c116c91f940f2d408a39b02a5c3fd51 (patch)
treef15d5e79bae28948258d3081ee741f642e65cddb /bundles/org.eclipse.swt/buildSWT.xml
parentf68f2ef411cad6ba8a6c75f70aee5304a6bff838 (diff)
downloadeclipse.platform.swt-bd427c591c116c91f940f2d408a39b02a5c3fd51.tar.gz
eclipse.platform.swt-bd427c591c116c91f940f2d408a39b02a5c3fd51.tar.xz
eclipse.platform.swt-bd427c591c116c91f940f2d408a39b02a5c3fd51.zip
Bug 491521 - Provide 64-bit SWT libraries for Solaris/SPARCI20160520-2000I20160519-1730
Change-Id: I5de93dd150be9978eff808581873488184ddacbe Signed-off-by: Arun Thondapu <arunkumar.thondapu@in.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.swt/buildSWT.xml')
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml20
1 files changed, 12 insertions, 8 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index a8a092fd79..2761d37b1d 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -106,6 +106,10 @@
<param name="fragment" value="org.eclipse.swt.gtk.solaris.sparc"/>
</antcall>
<antcall target="check_fragment_libraries">
+ <param name="library_count" value="7"/>
+ <param name="fragment" value="org.eclipse.swt.gtk.solaris.sparcv9"/>
+ </antcall>
+ <antcall target="check_fragment_libraries">
<param name="library_count" value="8"/>
<param name="fragment" value="org.eclipse.swt.gtk.solaris.x86"/>
</antcall>
@@ -134,7 +138,7 @@
<target name="check_fragment_libraries" depends="get_version">
<echo>Checking ${fragment}</echo>
<property name="checkdir" value="~/build/check_libraries"/>
- <property name="library_count" value="139"/>
+ <property name="library_count" value="146"/>
<property name="fragment" value=""/>
<fileset id="match" dir="${repo.bin}/bundles/${fragment}">
<filename regex="[0-9][0-9][0-9][0-9]."/>
@@ -224,12 +228,12 @@
trust="true"
outputproperty="m_solaris_sparc_output"
command="hostname"/>
- <sshexec host="${m_solaris_x86}"
+ <sshexec host="${m_solaris_x86_64}"
username="swtbuild"
keyfile="${keyfile}"
failonerror="false"
trust="true"
- outputproperty="m_solaris_x86_output"
+ outputproperty="m_solaris_x86_64_output"
command="hostname"/>
<sshexec host="${m_aix}"
@@ -306,10 +310,10 @@
<matches pattern="x${m_solaris_sparc_output}*" string="x${m_solaris_sparc}"/>
</and>
</condition>
- <condition property="m_solaris_x86_test" value="${success_msg}" else="${fail_msg}">
+ <condition property="m_solaris_x86_64_test" value="${success_msg}" else="${fail_msg}">
<and>
- <length string="${m_solaris_x86_output}" when="greater" length="0"/>
- <matches pattern="x${m_solaris_x86_output}*" string="x${m_solaris_x86}"/>
+ <length string="${m_solaris_x86_64_output}" when="greater" length="0"/>
+ <matches pattern="x${m_solaris_x86_64_output}*" string="x${m_solaris_x86_64}"/>
</and>
</condition>
<condition property="m_aix_test" value="${success_msg}" else="${fail_msg}">
@@ -341,13 +345,13 @@
<echo>${m_linux_ppc64} - ${m_linux_ppc64_test}</echo>
<!--<echo>${m_linux_ppc64le} - ${m_linux_ppc64le_test}</echo-->
<echo>${m_solaris_sparc} - ${m_solaris_sparc_test}</echo>
- <echo>${m_solaris_x86} - ${m_solaris_x86_test}</echo>
+ <echo>${m_solaris_x86_64} - ${m_solaris_x86_64_test}</echo>
<echo>${m_aix} - ${m_aix_test}</echo>
<echo>${m_hpux} - ${m_hpux_test}</echo>
<echo>${m_mac} - ${m_mac_test}</echo>
<echo>-------------------------</echo>
<condition property="m_fail">
- <matches pattern="Fail" string="${m_linux_x86_test} ${m_linux_x86_64_test} ${m_linux_ppc_test} ${m_linux_ppc64_test} ${m_solaris_sparc_test} ${m_solaris_x86_test} ${m_aix_test} ${m_hpux_test} ${m_mac_test}"/>
+ <matches pattern="Fail" string="${m_linux_x86_test} ${m_linux_x86_64_test} ${m_linux_ppc_test} ${m_linux_ppc64_test} ${m_solaris_sparc_test} ${m_solaris_x86_64_test} ${m_aix_test} ${m_hpux_test} ${m_mac_test}"/>
</condition>
<fail if="m_fail" message="Failed"/>
</target>

Back to the top