Commit 59f70d39 authored by Antoine Pitrou's avatar Antoine Pitrou

Following Ezio's suggestion, force verbose mode on test_ssl to diagnose freezes on 3.x

parent e24a0d57
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment