summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-09-29 13:50:40 -0700
committerGregory P. Smith <greg@krypto.org>2012-09-29 13:50:40 -0700
commitb8ad23f4aa534a9d169b194dc415cd782fa4b199 (patch)
tree6789d6353f24e7ba2e36fb648eb54637a107b55f
parent0f21adf7999d0a50889cde65419e51cfe77e9e1d (diff)
downloadcpython-git-b8ad23f4aa534a9d169b194dc415cd782fa4b199.tar.gz
Remove the new trivial pty.spawn() test as it hangs on many buildbots.
-rw-r--r--Lib/test/test_pty.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py
index db370391f7..ef95268e19 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."""