X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fdeployments%2Fst-client%2Frun_all.sh;h=489855cbc1afd0ab6a05beb6066a588c775fba67;hp=3d1c33bf9f9cb09b8b854d2488a0a4238a1d88d9;hb=d723d5bf571eb48c641b092058eaa38bb6c4fcc8;hpb=61f1340da3cae5159d2e3bc14fc47c6d4bf9453e diff --git a/example/diameter/launcher/deployments/st-client/run_all.sh b/example/diameter/launcher/deployments/st-client/run_all.sh index 3d1c33b..489855c 100755 --- a/example/diameter/launcher/deployments/st-client/run_all.sh +++ b/example/diameter/launcher/deployments/st-client/run_all.sh @@ -11,23 +11,35 @@ fi for run in `ls ADMLS/*/run.sh` do cd `dirname $run` - ./run.sh - #sleep 0.1 + instance_name=$(basename $PWD) + pkill $instance_name + [ $? -eq 0 ] && echo -n "Re-" + echo "Starting $instance_name ..." + ./run.sh > /dev/null & 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 configure another layout you should execute './configure.sh'." -echo -echo "Done!" +wait $(jobs -p) + +sleep 3 +./checkStatus.sh + +cat << EOF + $(pgrep ADML- | wc -l) instances alive ! + $(netstat -a | grep :diameter | grep ESTABLISHED | wc -l) connections established ! + + To stop the processes, you could execute: pgrep ADML-[0-9] | xargs kill + Anyway, executing './run.sh' again you will restart the ADML instances. + + Now it's time to './program.sh' the started instances with the desired + scenary. There are two programming variants: + + ./program.sh + ./program.sh dynamic + + + Done! +EOF + echo