2020-07-10 09:12:09 +02:00
|
|
|
--- a/Lib/test/test_subprocess.py
|
|
|
|
+++ b/Lib/test/test_subprocess.py
|
2021-02-19 17:53:23 +01:00
|
|
|
@@ -1147,7 +1147,8 @@ class ProcessTestCase(BaseTestCase):
|
2020-07-10 09:12:09 +02:00
|
|
|
self.assertIn("0.0001", str(c.exception)) # For coverage of __str__.
|
|
|
|
# Some heavily loaded buildbots (sparc Debian 3.x) require this much
|
|
|
|
# time to start.
|
|
|
|
- self.assertEqual(p.wait(timeout=3), 0)
|
|
|
|
+ # OBS might require even more
|
|
|
|
+ self.assertEqual(p.wait(timeout=10), 0)
|
|
|
|
|
|
|
|
def test_invalid_bufsize(self):
|
|
|
|
# an invalid type of the bufsize argument should raise
|