Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 846 - (show annotations) (download)
Mon May 4 18:51:23 2009 UTC (15 years, 1 month ago) by niro
File size: 150 byte(s)
tagged 'mkinitrd-6_1_3'
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