Merge pull request #658 from maraoz/add/failsearch

add failsearch script
This commit is contained in:
Matias Alejo Garcia 2014-06-11 11:26:59 -03:00
commit d78846352f
1 changed files with 8 additions and 0 deletions

8
failsearch.sh Normal file
View File

@ -0,0 +1,8 @@
#! /bin/bash
# run mocha until it fails
COUNTER=0
while [ $? -eq 0 ]; do
mocha
done