Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Ensure portability to win32 using the gras_os_functions :)
[simgrid.git] / testsuite / gras / trp_tcp_usage.in
index af417ae..99f2a27 100644 (file)
@@ -1,6 +1,12 @@
 #! @BASH@ -e
 
-./trp_tcp_server $@ &
+if test -e gras/trp_tcp_server ; then
+  base=gras
+else 
+  base=.
+fi
+
+$base/trp_tcp_server $@ &
 sleep 1
-./trp_tcp_client $@ 
+$base/trp_tcp_client $@