summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-15 22:16:23 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-15 22:16:23 (GMT)
commit968dc03f24f71c47bee4614f0bcbf53eabdc8867 (patch)
tree13141a8006fa21e7dfdec48010bf74bcb835a399 /Lib
parente3c39ae53e0fea7744da2afc83cbeb98539bb840 (diff)
downloadcpython-968dc03f24f71c47bee4614f0bcbf53eabdc8867.zip
cpython-968dc03f24f71c47bee4614f0bcbf53eabdc8867.tar.gz
cpython-968dc03f24f71c47bee4614f0bcbf53eabdc8867.tar.bz2
Following Ezio's suggestion, force verbose mode on test_ssl to diagnose freezes on 3.x
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_ssl.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 39aaba2..9003a82 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -1486,9 +1486,12 @@ def test_main(verbose=False):
if thread_info and support.is_resource_enabled('network'):
tests.append(ThreadedTests)
+ old_verbose = support.verbose
try:
+ support.verbose = True
support.run_unittest(*tests)
finally:
+ support.verbose = old_verbose
if _have_threads:
support.threading_cleanup(*thread_info)