Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
let it work on solaris (test -e does not exist there, but test -x does)
[simgrid.git] / examples / ping / test_sg
index 2348b4368589e95b0d38b08aa0b5c088c3acf7c2..15bc8ea7e3c3e88c97e7665cb3d84c6eb7502543 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-if test -e ./ping_simulator ; then
-  exec ./ping_simulator ../WAN_3.platform.txt ping_deployment
+if test -x ./ping_simulator ; then
+  exec ./ping_simulator ../WAN_3.platform.txt ping_deployment.txt
 fi
 exit 77