summaryrefslogtreecommitdiffstats
path: root/scripts/run-trials-until.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-04-19 06:26:22 +0200
committerSven Gothel <[email protected]>2022-04-19 06:26:22 +0200
commitfda49ef5ba0d3fb03aefb6f119f4196f9c05dc51 (patch)
treea5c7463a5408551a994f8f4e5dd4e828f6611dca /scripts/run-trials-until.sh
parent6c3451536ea6f468079349daec647d01354a3435 (diff)
README: Bump v2.6.4. Convert Connection_Paramter.md to markdown and link.v2.6.4
Also add scripts/run-trials-until.sh script.
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