Magellan Linux

Annotation of /trunk/mkinitrd-magellan/busybox/scripts/randomtest.loop

Parent Directory Parent Directory | Revision Log Revision Log


Revision 816 - (hide annotations) (download)
Fri Apr 24 18:33:46 2009 UTC (15 years, 1 month ago) by niro
File size: 150 byte(s)
-updated to busybox-1.13.4
1 niro 816 #!/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