Skip to content

Commit 87cdf86

Browse files
committed
script for continuously running tests
1 parent b2c435a commit 87cdf86

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

contRun.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
make test
4+
5+
ret=$?
6+
7+
while [ $ret == 0 ]; do
8+
make test
9+
ret=$?
10+
done

0 commit comments

Comments
 (0)