2008-09-28 22:49:02 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
2012-04-20 18:18:00 +05:30
|
|
|
run_testsuite=true
|
|
|
|
|
2010-05-10 07:46:43 +05:30
|
|
|
test -d "$1" || { echo "'$1' is not a directory"; exit 1; }
|
|
|
|
test -x "$1/scripts/randomtest" || { echo "No scripts/randomtest in '$1'"; exit 1; }
|
|
|
|
|
|
|
|
export LIBC="uclibc"
|
2010-11-23 04:19:10 +05:30
|
|
|
export CROSS_COMPILER_PREFIX="i686-"
|
2010-05-10 07:46:43 +05:30
|
|
|
export MAKEOPTS="-j9"
|
|
|
|
|
2008-09-28 22:49:02 +05:30
|
|
|
cnt=0
|
|
|
|
fail=0
|
|
|
|
while sleep 1; do
|
2010-05-10 07:46:43 +05:30
|
|
|
echo "Passes: $cnt Failures: $fail"
|
|
|
|
dir="test.$$"
|
|
|
|
while test -e "$dir" -o -e "failed.$dir"; do
|
|
|
|
dir="test.$$.$RANDOM"
|
|
|
|
done
|
|
|
|
echo "Running randconfig test in $dir..."
|
|
|
|
if ! "$1/scripts/randomtest" "$1" "$dir" >/dev/null; then
|
|
|
|
mv -- "$dir" "failed.$dir"
|
|
|
|
echo "Failed build in: failed.$dir"
|
|
|
|
exit 1 # you may comment this out...
|
|
|
|
let fail++
|
2012-04-20 18:18:00 +05:30
|
|
|
continue
|
|
|
|
fi
|
|
|
|
if $run_testsuite; then
|
2010-05-10 07:46:43 +05:30
|
|
|
(
|
|
|
|
cd -- "$dir/testsuite" || exit 1
|
|
|
|
echo "Running testsuite in $dir..."
|
|
|
|
SKIP_KNOWN_BUGS=1 SKIP_INTERNET_TESTS=1 ./runtest -v >runtest.log 2>&1
|
|
|
|
)
|
|
|
|
if test $? != 0; then
|
|
|
|
echo "Failed runtest in $dir"
|
2012-04-20 18:18:00 +05:30
|
|
|
exit 1 # you may comment this out...
|
|
|
|
let fail++
|
|
|
|
continue
|
2010-05-10 07:46:43 +05:30
|
|
|
fi
|
|
|
|
tail -n10 -- "$dir/testsuite/runtest.log"
|
|
|
|
fi
|
2012-04-20 18:18:00 +05:30
|
|
|
rm -rf -- "$dir"
|
2010-05-10 07:46:43 +05:30
|
|
|
let cnt++
|
2008-09-28 22:49:02 +05:30
|
|
|
done
|