MessageBus/testNTimes.sh

13 lines
185 B
Bash
Raw Normal View History

2013-04-01 15:13:52 +02:00
#!/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