MessageBus/testNTimes.sh
2013-04-01 15:13:52 +02:00

13 lines
185 B
Bash
Executable File

#!/bin/bash
for (( i = 1; i < $1 ; i++ ))
do
echo "Attempt $i"
mvn test -o -Dtest=$2
exitcode=$?
if [ $exitcode -ne 0 ]
then
echo "Error at attempt $i"
exit
fi
done