From b8ad23f4aa534a9d169b194dc415cd782fa4b199 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Sat, 29 Sep 2012 13:50:40 -0700 Subject: [PATCH] Remove the new trivial pty.spawn() test as it hangs on many buildbots. --- Lib/test/test_pty.py | 6 ------ 1 file changed, 6 deletions(-) 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.""" -- 2.47.3