summaryrefslogtreecommitdiffstats
path: root/scripts/run-trials-until.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/run-trials-until.sh')
-rwxr-xr-xscripts/run-trials-until.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/run-trials-until.sh b/scripts/run-trials-until.sh
new file mode 100755
index 00000000..c891db7f
--- /dev/null
+++ b/scripts/run-trials-until.sh
@@ -0,0 +1,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