2020-07-17 08:40:44 +02:00
|
|
|
--- a/Lib/test/test_subprocess.py
|
|
|
|
+++ b/Lib/test/test_subprocess.py
|
2021-08-09 15:05:39 +02:00
|
|
|
@@ -253,7 +253,8 @@ class ProcessTestCase(BaseTestCase):
|
2020-07-17 08:40:44 +02:00
|
|
|
"time.sleep(3600)"],
|
|
|
|
# Some heavily loaded buildbots (sparc Debian 3.x) require
|
|
|
|
# this much time to start and print.
|
|
|
|
- timeout=3)
|
|
|
|
+ # OBS might require even more
|
|
|
|
+ timeout=10)
|
|
|
|
self.fail("Expected TimeoutExpired.")
|
|
|
|
self.assertEqual(c.exception.output, b'BDFL')
|
2021-02-20 18:33:07 +01:00
|
|
|
|