Commit 7c08744f authored by Antoine Pitrou's avatar Antoine Pitrou

Make error more explicit in test_finalize_with_trace

parent fedd4815
......@@ -304,7 +304,7 @@ class ThreadTests(BaseTestCase):
# Issue1733757
# Avoid a deadlock when sys.settrace steps into threading._shutdown
import subprocess
rc = subprocess.call([sys.executable, "-c", """if 1:
p = subprocess.Popen([sys.executable, "-c", """if 1:
import sys, threading
# A deadlock-killer, to prevent the
......@@ -324,9 +324,14 @@ class ThreadTests(BaseTestCase):
return func
sys.settrace(func)
"""])
"""],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
stdout, stderr = p.communicate()
rc = p.returncode
self.assertFalse(rc == 2, "interpreted was blocked")
self.assertTrue(rc == 0, "Unexpected error")
self.assertTrue(rc == 0,
"Unexpected error: " + ascii(stderr))
def test_join_nondaemon_on_shutdown(self):
# Issue 1722344
......
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