d9a33aa86f1f13e68342cf62c38a764a5771fa0d
[anna.git] / example / diameter / launcher / deployments / st-client / run_all.sh
1 #!/bin/bash
2 cd `dirname $0`
3 if [ ! -d "ADMLS" ]
4 then
5   echo
6   echo "Run './configure.sh' first !"
7   echo
8   exit 1
9 fi
10
11 for run in `ls ADMLS/*/run.sh`
12 do
13   cd `dirname $run`
14   ./run.sh
15   #sleep 0.1
16   cd - >/dev/null
17 done
18
19 sleep 1
20 echo "Now you could program the tests by mean script 'program.sh'. For example:"
21 echo "   ./program.sh st_examples/DynamicQualification"
22 echo
23 echo "To enable reports dump for failed tests, execute:"
24 echo "   ./operation.sh \"test|report|failed\""
25 echo
26 echo "To stop the processes, you could execute:"
27 echo "   pgrep ADML-[0-9] | xargs kill"
28 echo
29 echo "Done!"
30