Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2011-01-19 16:01:56 +0000
committerBogdan Gheorghe2011-01-19 16:01:56 +0000
commitcec8aa1858f214098be459234b7f2169ec4faad0 (patch)
tree2236e37928cbef28229231380b248634b17056a6 /bundles/org.eclipse.swt
parent9e2702afa6b962fde80f1108a5ec6c9116dd479c (diff)
downloadeclipse.platform.swt-cec8aa1858f214098be459234b7f2169ec4faad0.tar.gz
eclipse.platform.swt-cec8aa1858f214098be459234b7f2169ec4faad0.tar.xz
eclipse.platform.swt-cec8aa1858f214098be459234b7f2169ec4faad0.zip
Restore
Diffstat (limited to 'bundles/org.eclipse.swt')
-rw-r--r--bundles/org.eclipse.swt/tasks/build.xml16
1 files changed, 7 insertions, 9 deletions
diff --git a/bundles/org.eclipse.swt/tasks/build.xml b/bundles/org.eclipse.swt/tasks/build.xml
index 2e3d5be764..9b9c4d19da 100644
--- a/bundles/org.eclipse.swt/tasks/build.xml
+++ b/bundles/org.eclipse.swt/tasks/build.xml
@@ -664,8 +664,7 @@
outputproperty="m_linux_rh3_x86_64_output"
command="hostname"/-->
- <!-- TEMPORARY: AIX machine is being repaired. -->
- <!--sshexec host="${m_linux_ppc}"
+ <sshexec host="${m_linux_ppc}"
username="swtbuild"
keyfile="${keyfile}"
failonerror="false"
@@ -678,7 +677,7 @@
failonerror="false"
trust="true"
outputproperty="m_linux_ppc64_output"
- command="hostname"/-->
+ command="hostname"/>
<sshexec host="${m_solaris_sparc}"
username="swtbuild"
@@ -732,13 +731,13 @@
<condition property="m_linux_rh3_x86_64_test" value="${success_msg}" else="${fail_msg}">
<matches pattern="${m_linux_rh3_x86_64}*" string="${m_linux_rh3_x86_64_output}"/>
</condition-->
- <!-- TEMPORARY: AIX machine is being repaired. -->
- <!--condition property="m_linux_ppc_test" value="${success_msg}" else="${fail_msg}">
+
+ <condition property="m_linux_ppc_test" value="${success_msg}" else="${fail_msg}">
<matches pattern="${m_linux_ppc}*" string="${m_linux_ppc_output}"/>
</condition>
<condition property="m_linux_ppc64_test" value="${success_msg}" else="${fail_msg}">
<matches pattern="${m_linux_ppc64}*" string="${m_linux_ppc64_output}"/>
- </condition-->
+ </condition>
<condition property="m_solaris_sparc_test" value="${success_msg}" else="${fail_msg}">
<matches pattern="${m_solaris_sparc}*" string="${m_solaris_sparc_output}"/>
</condition>
@@ -761,9 +760,8 @@
<echo>${m_linux_x86_64} - ${m_linux_x86_64_test}</echo>
<!--echo>${m_linux_rh3_x86} ${m_linux_rh3_x86_test}</echo>
<echo>${m_linux_rh3_x86_64} ${m_linux_rh3_x86_64_test}</echo-->
- <!-- TEMPORARY: AIX machine is being repaired. -->
- <!--echo>${m_linux_ppc} - ${m_linux_ppc_test}</echo>
- <echo>${m_linux_ppc64} - ${m_linux_ppc64_test}</echo-->
+ <echo>${m_linux_ppc} - ${m_linux_ppc_test}</echo>
+ <echo>${m_linux_ppc64} - ${m_linux_ppc64_test}</echo>
<echo>${m_solaris_sparc} - ${m_solaris_sparc_test}</echo>
<echo>${m_solaris_x86} - ${m_solaris_x86_test}</echo>
<echo>${m_aix} - ${m_aix_test}</echo>

Back to the top