Kaydet (Commit) f5668f13 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

try to fix test_threading on the Windows bot

üst db3409ce
...@@ -338,7 +338,8 @@ class ThreadJoinOnShutdown(unittest.TestCase): ...@@ -338,7 +338,8 @@ class ThreadJoinOnShutdown(unittest.TestCase):
import subprocess import subprocess
p = subprocess.Popen([sys.executable, "-c", script], stdout=subprocess.PIPE) p = subprocess.Popen([sys.executable, "-c", script], stdout=subprocess.PIPE)
rc = p.wait() rc = p.wait()
self.assertEqual(p.stdout.read(), "end of main\nend of thread\n") data = p.stdout.read().replace('\r', '')
self.assertEqual(data, "end of main\nend of thread\n")
self.failIf(rc == 2, "interpreter was blocked") self.failIf(rc == 2, "interpreter was blocked")
self.failUnless(rc == 0, "Unexpected error") self.failUnless(rc == 0, "Unexpected error")
......
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