Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 916 - (show annotations) (download)
Wed Oct 28 00:17:50 2009 UTC (14 years, 8 months ago) by niro
File size: 150 byte(s)
tagged 'mkinitrd-6_1_8'
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