Magellan Linux

Contents of /tags/mkinitrd-6_1_11/busybox/scripts/randomtest.loop

Parent Directory Parent Directory | Revision Log Revision Log


Revision 928 - (show annotations) (download)
Wed Oct 28 13:31:19 2009 UTC (14 years, 7 months ago) by niro
File size: 150 byte(s)
tagged 'mkinitrd-6_1_11'
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