diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-09 05:08:56 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-02-09 05:08:56 (GMT) |
commit | bd3490abdb94aca32c6f42b450444554b28d4bf1 (patch) | |
tree | 202a6023771c4b929cbed429701a463844b50d2d /Misc/build.sh | |
parent | 82a93942372d098aa85d2f580a83f8e1d20387f4 (diff) | |
download | cpython-bd3490abdb94aca32c6f42b450444554b28d4bf1.zip cpython-bd3490abdb94aca32c6f42b450444554b28d4bf1.tar.gz cpython-bd3490abdb94aca32c6f42b450444554b28d4bf1.tar.bz2 |
Be a little less sensitive to failures. Only check for the result from
regrtest.py. If we grep for just "fail", that finds bsddb deadlock
messages, which presumably are just warnings. They don't cause
a test failure.
Diffstat (limited to 'Misc/build.sh')
-rwxr-xr-x | Misc/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/build.sh b/Misc/build.sh index 514921a..67aa776 100755 --- a/Misc/build.sh +++ b/Misc/build.sh @@ -144,7 +144,7 @@ if [ $err = 0 ]; then F=make-test.out start=`current_time` make test >& build/$F - NUM_FAILURES=`grep -ic fail build/$F` + NUM_FAILURES=`grep -ic " test failed:" build/$F` update_status "Testing basics ($NUM_FAILURES failures)" "$F" $start ## FIXME: should mail since -uall below should find same problems mail_on_failure "basics" build/$F |