summaryrefslogtreecommitdiff
path: root/lib/testrunner
diff options
context:
space:
mode:
Diffstat (limited to 'lib/testrunner')
-rwxr-xr-xlib/testrunner4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/testrunner b/lib/testrunner
index f9012a2..c64a617 100755
--- a/lib/testrunner
+++ b/lib/testrunner
@@ -266,12 +266,16 @@ cd /root
set +e
ret=0
+iterations=0
while [[ $ret = 0 ]]; do
run_tests $tests
ret=$?
pkill -P $$ >/dev/null || true
[[ $ret != 0 ]] && break
[[ $ktest_loop = 1 ]] || break
+
+ iterations=$((iterations + 1))
+ echo "SUCCESSFUL ITERATIONS $iterations"
done
copy_to_host