Skip to content

Commit

Permalink
script for continuously running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ebensing committed Aug 16, 2013
1 parent b2c435a commit 87cdf86
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions contRun.sh
@@ -0,0 +1,10 @@
#!/bin/bash

make test

ret=$?

while [ $ret == 0 ]; do
make test
ret=$?
done

0 comments on commit 87cdf86

Please sign in to comment.