Commit 4d685c34 authored by Simon Pastor's avatar Simon Pastor
Browse files

adding the script to test every test cases multiple times in a loop

parent aa666eb4
Loading
Loading
Loading
Loading
+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