diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-06-15 03:11:41 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-06-15 03:11:41 (GMT) |
commit | df4622690b9d480e3c35fcebe21eb0af7c82b40d (patch) | |
tree | 3d76d1da59b5a1e484e1ab49a56b74e86d97c2de /Misc | |
parent | da073e1601570afa317add6a31b3aa4c94f8495d (diff) | |
download | cpython-df4622690b9d480e3c35fcebe21eb0af7c82b40d.zip cpython-df4622690b9d480e3c35fcebe21eb0af7c82b40d.tar.gz cpython-df4622690b9d480e3c35fcebe21eb0af7c82b40d.tar.bz2 |
urllib2_localnet says it leaks probably due to threads. So ignore it.
popen2 is also complaining probably for similar reasons.
make install always reports failure, so don't mail in this case.
Diffstat (limited to 'Misc')
-rwxr-xr-x | Misc/build.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Misc/build.sh b/Misc/build.sh index e36a88c..327a92c 100755 --- a/Misc/build.sh +++ b/Misc/build.sh @@ -67,7 +67,7 @@ REFLOG="build/reflog.txt.out" # Note: test_XXX (none currently) really leak, but are disabled # so we don't send spam. Any test which really leaks should only # be listed here if there are also test cases under Lib/test/leakers. -LEAKY_TESTS="test_(cmd_line|socket)" +LEAKY_TESTS="test_(cmd_line|popen2|socket|urllib2_localnet)" # Skip these tests altogether when looking for leaks. These tests # do not need to be stored above in LEAKY_TESTS too. @@ -166,7 +166,6 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then start=`current_time` make install >& build/$F update_status "Installing" "$F" $start - mail_on_failure "install" build/$F if [ ! -x $PYTHON ]; then ln -s ${PYTHON}2.* $PYTHON |