From: Eduardo Ramos Testillano Date: Sat, 29 Oct 2016 14:26:42 +0000 (+0200) Subject: fix X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=commitdiff_plain;h=8faef5457809a17f5cc414fcbc9ab3ae78440e47 fix --- diff --git a/example/diameter/launcher/deployments/st-client/launchCPS.sh b/example/diameter/launcher/deployments/st-client/launchCPS.sh index 44d993a..44d55b3 100755 --- a/example/diameter/launcher/deployments/st-client/launchCPS.sh +++ b/example/diameter/launcher/deployments/st-client/launchCPS.sh @@ -30,13 +30,12 @@ if [ "$desired_rate" != "" ] then rate_per_instance=$((desired_rate/$ADML_INSTANCES)) fi -CMD="./operation.sh \"test|ttps|$rate_per_instance\"" echo echo "As we have $ADML_INSTANCES instances available, we shall launch $rate_per_instance test cases" -echo " per second and instance ($CMD)." +echo " per second and instance (./operation.sh \"test|ttps|$rate_per_instance\")." echo echo "Press ENTER to continue, CTRL-C to abort ..." read dummy -$CMD +./operation.sh "test|ttps|$rate_per_instance"