remove msh_function.patch. msh is deprecated
[oweals/busybox.git] / scripts / randomtest.loop
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