summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2010-10-20 15:37:47 +0000
committerSilenio Quarti <silenio>2010-10-20 15:37:47 +0000
commit728dfe361f9b89fb75e8a21e595eea556ba23912 (patch)
tree5cff6f74f4e9f47313e61dd796bc57f523b4d2b2
parentbe190590075386aca21e60281cc7ce200f6a46e4 (diff)
downloadeclipse.platform.swt-728dfe361f9b89fb75e8a21e595eea556ba23912.tar.gz
eclipse.platform.swt-728dfe361f9b89fb75e8a21e595eea556ba23912.tar.xz
eclipse.platform.swt-728dfe361f9b89fb75e8a21e595eea556ba23912.zip
s390 machines check - use scp instead of ping to make sure the firewall is open
-rw-r--r--bundles/org.eclipse.swt/tasks/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/tasks/build.xml b/bundles/org.eclipse.swt/tasks/build.xml
index 2335237aa4..178e4edff7 100644
--- a/bundles/org.eclipse.swt/tasks/build.xml
+++ b/bundles/org.eclipse.swt/tasks/build.xml
@@ -773,14 +773,14 @@
failonerror="false"
trust="true"
outputproperty="m_linux_s390_output"
- command="ping -c 1 ${m_linux_s390}; hostname;"/>
+ command="echo test machine > ${m_linux_s390}.txt; scp ${m_linux_s390}.txt ${m_linux_s390}:build/; rm ${m_linux_s390}.txt; hostname;"/>
<sshexec host="${m_linux_x86}"
username="swtbuild"
keyfile="${keyfile}"
failonerror="false"
trust="true"
outputproperty="m_linux_s390x_output"
- command="ping -c 1 ${m_linux_s390x}; hostname;"/>
+ command="echo test machine > ${m_linux_s390x}.txt; scp ${m_linux_s390x}.txt ${m_linux_s390x}:build/; rm ${m_linux_s390x}.txt; hostname;"/>
</parallel>
<property name="success_msg" value="Success"/>
<property name="fail_msg" value="*** Fail ***"/>