diff options
Diffstat (limited to 'scripts/randomtest.loop')
-rwxr-xr-x | scripts/randomtest.loop | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/scripts/randomtest.loop b/scripts/randomtest.loop index 28edb6732..311536df8 100755 --- a/scripts/randomtest.loop +++ b/scripts/randomtest.loop | |||
@@ -1,10 +1,38 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | test -d "$1" || { echo "'$1' is not a directory"; exit 1; } | ||
4 | test -x "$1/scripts/randomtest" || { echo "No scripts/randomtest in '$1'"; exit 1; } | ||
5 | |||
6 | export LIBC="uclibc" | ||
7 | export CROSS_COMPILER_PREFIX="i486-linux-uclibc-" | ||
8 | export MAKEOPTS="-j9" | ||
9 | |||
3 | cnt=0 | 10 | cnt=0 |
4 | fail=0 | 11 | fail=0 |
5 | |||
6 | while sleep 1; do | 12 | while sleep 1; do |
7 | echo "Passes: $cnt Failures: $fail" | 13 | echo "Passes: $cnt Failures: $fail" |
8 | ./randomtest >/dev/null || exit #let fail++ | 14 | dir="test.$$" |
9 | let cnt++ | 15 | while test -e "$dir" -o -e "failed.$dir"; do |
16 | dir="test.$$.$RANDOM" | ||
17 | done | ||
18 | echo "Running randconfig test in $dir..." | ||
19 | if ! "$1/scripts/randomtest" "$1" "$dir" >/dev/null; then | ||
20 | mv -- "$dir" "failed.$dir" | ||
21 | echo "Failed build in: failed.$dir" | ||
22 | exit 1 # you may comment this out... | ||
23 | let fail++ | ||
24 | else | ||
25 | ( | ||
26 | cd -- "$dir/testsuite" || exit 1 | ||
27 | echo "Running testsuite in $dir..." | ||
28 | SKIP_KNOWN_BUGS=1 SKIP_INTERNET_TESTS=1 ./runtest -v >runtest.log 2>&1 | ||
29 | ) | ||
30 | if test $? != 0; then | ||
31 | echo "Failed runtest in $dir" | ||
32 | exit 1 | ||
33 | fi | ||
34 | tail -n10 -- "$dir/testsuite/runtest.log" | ||
35 | rm -rf -- "$dir" | ||
36 | fi | ||
37 | let cnt++ | ||
10 | done | 38 | done |