blob: 43c5216d447e8be34aeba4c79339635d6659ff67 [file] [log] [blame]
#!/bin/sh
# Run this script from the project root directory.
# It will run core module tests in burn in mode (i.e. until they fail or this script is manually terminated)
for (( i = 1; ; i++ ))
do
echo "Attempt $i"
./mvnw test -pl core -am
exitcode=$?
if [ $exitcode -ne 0 ]
then
echo "Error at attempt $i"
exit
fi
done