summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2011-03-16 21:08:21 (GMT)
committerReid Kleckner <reid@kleckner.net>2011-03-16 21:08:21 (GMT)
commitda9ac728a84778317e1d529f88e47b6d34a5a6b6 (patch)
tree80bd561008f03eb8542f86afe4dcb1fb6da833a0 /Lib/test
parent2b228f0d9b3bc5ed99162b052c5eae515f55f3b8 (diff)
downloadcpython-da9ac728a84778317e1d529f88e47b6d34a5a6b6.zip
cpython-da9ac728a84778317e1d529f88e47b6d34a5a6b6.tar.gz
cpython-da9ac728a84778317e1d529f88e47b6d34a5a6b6.tar.bz2
Bump up the subprocess timeouts even more. :(
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_subprocess.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 00cf0d5..2dde245 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -130,7 +130,9 @@ class ProcessTestCase(BaseTestCase):
"import sys; sys.stdout.write('BDFL')\n"
"sys.stdout.flush()\n"
"while True: pass"],
- timeout=1.5)
+ # Some heavily loaded buildbots (sparc Debian 3.x) require
+ # this much time to start and print.
+ timeout=3)
self.fail("Expected TimeoutExpired.")
self.assertEqual(c.exception.output, b'BDFL')
@@ -647,15 +649,15 @@ class ProcessTestCase(BaseTestCase):
# Subsequent invocations should just return the returncode
self.assertEqual(p.wait(), 0)
-
def test_wait_timeout(self):
p = subprocess.Popen([sys.executable,
"-c", "import time; time.sleep(0.1)"])
with self.assertRaises(subprocess.TimeoutExpired) as c:
p.wait(timeout=0.01)
self.assertIn("0.01", str(c.exception)) # For coverage of __str__.
- self.assertEqual(p.wait(timeout=2), 0)
-
+ # Some heavily loaded buildbots (sparc Debian 3.x) require this much
+ # time to start.
+ self.assertEqual(p.wait(timeout=3), 0)
def test_invalid_bufsize(self):
# an invalid type of the bufsize argument should raise