X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fdeployments%2Ftest_examples%2Fcycle.sh;fp=example%2Fdiameter%2Flauncher%2Fdeployments%2Ftest_examples%2Fcycle.sh;h=0000000000000000000000000000000000000000;hb=18319deabbc8563fc112795968372e96263e6fe4;hp=a16a62e695ae09343efffee8f796cfe12987aab5;hpb=fca0f585780127dba2564de6741d2de9a5e59fb4;p=anna.git diff --git a/example/diameter/launcher/deployments/test_examples/cycle.sh b/example/diameter/launcher/deployments/test_examples/cycle.sh deleted file mode 100755 index a16a62e..0000000 --- a/example/diameter/launcher/deployments/test_examples/cycle.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# Checking the correct cycle repeat and reports appending -program () { - - if [ "$2" = "ok" ] - then - ./operation.sh "test|$1|timeout|5000" - ./operation.sh "test|$1|delay|2000" - ./operation.sh "test|$1|delay|2000" - else - ./operation.sh "test|$1|timeout|5000" - ./operation.sh "test|$1|delay|2000" - ./operation.sh "test|$1|delay|4000" - fi -} - -pkill ADML -sleep 1 -./run.sh -sleep 1 -./operation.sh "test|repeat|yes" -./operation.sh "test|report|yes" - -COVERED_SECONDS=1 -for id in `seq 0 $((COVERED_SECONDS/2))` -do - program $((2*id + 1)) ok - program $((2*id + 2)) nok -done - -echo "Press ENTER to continue, CTRL+C to abort ..." -read dummy -./operation.sh "test|ttps|1" - -while true -do - sleep 1 - ./operation.sh "test|look" -done -