This commit is contained in:
Cel A. Skeggs
2021-02-13 12:14:23 -05:00
parent 8b2a8d60b3
commit 5d29f4196f

View File

@@ -10,5 +10,10 @@ fi
runs=$1
chmod +x test-mr.sh
for i in $(seq 1 $runs); do
timeout -k 2s 900s ./test-mr.sh
if ! timeout -k 2s 900s ./test-mr.sh
then
echo '***' FAILED TESTS IN TRIAL $i
exit 1
fi
done
echo '***' PASSED ALL $i TESTING TRIALS