Skip to content

Instantly share code, notes, and snippets.

@beaugunderson
Created December 13, 2012 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beaugunderson/4280575 to your computer and use it in GitHub Desktop.
Save beaugunderson/4280575 to your computer and use it in GitHub Desktop.
#!/bin/bash
RETURN=0
COUNT=0
while [ $RETURN == 0 ]; do
COUNT=$(($COUNT + 1))
echo "Test run $COUNT"
make ltest >> /dev/null
RETURN=$?
done
echo "Test failed on run $COUNT"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment