diff options
Diffstat (limited to 'scripts/randomtest.loop')
-rwxr-xr-x | scripts/randomtest.loop | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/randomtest.loop b/scripts/randomtest.loop new file mode 100755 index 000000000..28edb6732 --- /dev/null +++ b/scripts/randomtest.loop | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | cnt=0 | ||
4 | fail=0 | ||
5 | |||
6 | while sleep 1; do | ||
7 | echo "Passes: $cnt Failures: $fail" | ||
8 | ./randomtest >/dev/null || exit #let fail++ | ||
9 | let cnt++ | ||
10 | done | ||