From: Gregory P. Smith Date: Sat, 29 Sep 2012 20:50:40 +0000 (-0700) Subject: Remove the new trivial pty.spawn() test as it hangs on many buildbots. X-Git-Tag: v3.4.0a1~2463 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b8ad23f4aa534a9d169b194dc415cd782fa4b199;p=thirdparty%2FPython%2Fcpython.git Remove the new trivial pty.spawn() test as it hangs on many buildbots. --- diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py index db370391f784..ef95268e19e5 100644 --- a/Lib/test/test_pty.py +++ b/Lib/test/test_pty.py @@ -196,12 +196,6 @@ class PtyTest(unittest.TestCase): # pty.fork() passed. - def test_spawn_returns_status(self): - status = pty.spawn([sys.executable, '-c', 'import sys; sys.exit(0)']) - self.assertEqual(status, 0) - status = pty.spawn([sys.executable, '-c', 'import sys; sys.exit(5)']) - self.assertEqual(status, 5 << 8) - class SmallPtyTests(unittest.TestCase): """These tests don't spawn children or hang."""