Changes for kernel and Busybox
[tomato.git] / release / src / router / busybox / scripts / randomtest.loop
blob758a8e86290d96e49429db29e3620a42aa9b75a7
1 #!/bin/sh
3 run_testsuite=true
5 test -d "$1" || { echo "'$1' is not a directory"; exit 1; }
6 test -x "$1/scripts/randomtest" || { echo "No scripts/randomtest in '$1'"; exit 1; }
8 export LIBC="uclibc"
9 export CROSS_COMPILER_PREFIX="i686-"
10 export MAKEOPTS="-j9"
12 cnt=0
13 fail=0
14 while sleep 1; do
15 echo "Passes: $cnt Failures: $fail"
16 dir="test.$$"
17 while test -e "$dir" -o -e "failed.$dir"; do
18 dir="test.$$.$RANDOM"
19 done
20 echo "Running randconfig test in $dir..."
21 if ! "$1/scripts/randomtest" "$1" "$dir" >/dev/null; then
22 mv -- "$dir" "failed.$dir"
23 echo "Failed build in: failed.$dir"
24 exit 1 # you may comment this out...
25 let fail++
26 continue
28 if $run_testsuite; then
30 cd -- "$dir/testsuite" || exit 1
31 echo "Running testsuite in $dir..."
32 SKIP_KNOWN_BUGS=1 SKIP_INTERNET_TESTS=1 ./runtest -v >runtest.log 2>&1
34 if test $? != 0; then
35 echo "Failed runtest in $dir"
36 exit 1 # you may comment this out...
37 let fail++
38 continue
40 tail -n10 -- "$dir/testsuite/runtest.log"
42 rm -rf -- "$dir"
43 let cnt++
44 done