blob: c891db7fd260ae9770e882d51799335273b5f446 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
run_until() {
let n=0; while make test ; do let n=${n}+1; echo "Test ${n} OK"; cp -av Testing/Temporary/LastTest.log LastTest-${n}.log ; done
}
run_until 2>&1 | tee run-trials-until.log
|