X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fdeployments%2Fst-client%2Frun_all.sh;h=796fe2d95a79d322ed03eb31243f8fcf69e9c5fd;hb=d33231f088c5ff6a137d63285c91536ac3598bf4;hp=8f2cd56716ea8b0e94477e81415f67758e7c31b8;hpb=daeeaacceeccefcac46838f460b19409cc5c4cb4;p=anna.git diff --git a/example/diameter/launcher/deployments/st-client/run_all.sh b/example/diameter/launcher/deployments/st-client/run_all.sh index 8f2cd56..796fe2d 100755 --- a/example/diameter/launcher/deployments/st-client/run_all.sh +++ b/example/diameter/launcher/deployments/st-client/run_all.sh @@ -1,6 +1,34 @@ #!/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 +echo +echo "To enable reports dump for failed tests, execute:" +echo " ./operation.sh \"test|report|failed\"" +echo +echo "To stop the processes, you could execute:" +echo " pgrep ADML-[0-9] | xargs kill" +echo +echo "When running, use script './program.sh' to configure the test cases." +echo "To program again, you should execute './configure.sh' script to" +echo " change the current testing setup." +echo +echo "Done!" +echo +