Loading test/system/loopTest.sh 0 → 100755 +15 −0 Original line number Diff line number Diff line #!/bin/bash # This script executes go test X times export MEEP_HOST_TEST_URL="http://10.3.16.150" i="0" while [ $i -lt 66 ] do output_prefix="result" output_suffix=".txt" output=${output_prefix}${i}${output_suffix} go test -timeout 20m > ${output} i=$[$i+1] done Loading
test/system/loopTest.sh 0 → 100755 +15 −0 Original line number Diff line number Diff line #!/bin/bash # This script executes go test X times export MEEP_HOST_TEST_URL="http://10.3.16.150" i="0" while [ $i -lt 66 ] do output_prefix="result" output_suffix=".txt" output=${output_prefix}${i}${output_suffix} go test -timeout 20m > ${output} i=$[$i+1] done