Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Test if SG was compiled in a way that even solaris understand (hopefully)
[simgrid.git] / examples / ping / test_sg
index 8034fc8..2348b43 100755 (executable)
@@ -1,4 +1,5 @@
 #! /bin/sh
-test -e ./ping_simulator || exit 77
-exec ./ping_simulator ../WAN_3.platform.txt ping_deployment
-
+if test -e ./ping_simulator ; then
+  exec ./ping_simulator ../WAN_3.platform.txt ping_deployment
+fi
+exit 77