From 8faef5457809a17f5cc414fcbc9ab3ae78440e47 Mon Sep 17 00:00:00 2001 From: Eduardo Ramos Testillano Date: Sat, 29 Oct 2016 16:26:42 +0200 Subject: [PATCH] fix --- example/diameter/launcher/deployments/st-client/launchCPS.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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" -- 2.20.1