System test refinement
[anna.git] / example / diameter / launcher / deployments / st-client / run_all.sh
index 8f2cd56..e9014ee 100755 (executable)
@@ -1,6 +1,27 @@
 #!/bin/bash
 cd `dirname $0`
+if [ ! -d "ADMLS" ]
+then
+  echo
+  echo "Run './configure.sh' first !"
+  echo
+  exit 1
+fi
+
 for run in `ls ADMLS/*/run.sh`
 do
-  $run
+  cd `dirname $run`
+  ./run.sh
+  sleep 0.1
+  cd - >/dev/null
 done
+
+sleep 1
+echo "Now you could program the tests by mean script 'program.sh'. For example:"
+echo "   ./program.sh st_examples/DynamicQualification"
+echo
+echo "To stop the processes, you could execute:"
+echo "   pgrep ADML-[0-9] | xargs kill"
+echo
+echo "Done!"
+