Browse Source

Faster version of testcomplete

Bernhard 5 years ago
parent
commit
162fff752d
1 changed files with 27 additions and 0 deletions
  1. 27 0
      test_complete_faster.sh

+ 27 - 0
test_complete_faster.sh

@@ -0,0 +1,27 @@
+#!/bin/bash
+
+_evalBg() {
+    eval "$@" &>/dev/null &disown;
+}
+
+short_all="./test_med.sh"
+short_re="./test_re_med.sh"
+
+for i in {1..3}
+do
+	echo "Starting short recycle iteration ${i}";
+	_evalBg "${short_all}";
+	_evalBg "${short_re}";
+	sleep 120s
+done
+
+
+for i in {1..20}
+do
+        echo "Starting all_big iteration and one recycling ${i}"
+	/bin/bash ./test_all_big.sh
+        /bin/bash ./test_re_big.sh
+        echo "Waiting 15 Minutes"
+	sleep 900s
+done
+echo "All done"