Welcome to mirror list, hosted at ThFree Co, Russian Federation.

randomtest.loop « scripts - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28edb6732116e68662dcd4d329cd2bfa4d2281bc (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

cnt=0
fail=0

while sleep 1; do
    echo "Passes: $cnt Failures: $fail"
    ./randomtest >/dev/null || exit #let fail++
    let cnt++
done