summaryrefslogtreecommitdiffstats
path: root/Misc/build.sh
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-06-18 19:35:01 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-06-18 19:35:01 (GMT)
commit9602cc2aa43e489a61df800013bc7767094ede91 (patch)
tree867065f44f023c9f1c26bcdafeec7107e8afffc7 /Misc/build.sh
parentf5da071ec8ec0b84acd8d1038e1c4b584158ff63 (diff)
downloadcpython-9602cc2aa43e489a61df800013bc7767094ede91.zip
cpython-9602cc2aa43e489a61df800013bc7767094ede91.tar.gz
cpython-9602cc2aa43e489a61df800013bc7767094ede91.tar.bz2
Prevent spurious leaks when running regrtest.py -R. There may be more
issues that crop up from time to time, but this change seems to have been pretty stable (no spurious warnings) for about a week. Other modules which use threads may require similar use of threading_setup/threading_cleanup from test_support.
Diffstat (limited to 'Misc/build.sh')
-rwxr-xr-xMisc/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/build.sh b/Misc/build.sh
index de51539..c3c2e38 100755
--- a/Misc/build.sh
+++ b/Misc/build.sh
@@ -60,7 +60,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_(ctypes|filecmp|socket|threadedtempfile|threading|urllib2)"
+LEAKY_TESTS="test_(XXX)" # Currently no tests should report spurious leaks.
# Skip these tests altogether when looking for leaks. These tests
# do not need to be stored above in LEAKY_TESTS too.