File subprocess-raise-timeout.patch of Package python39
13
1
--- a/Lib/test/test_subprocess.py
2
+++ b/Lib/test/test_subprocess.py
3
4
"time.sleep(3600)"],
5
# Some heavily loaded buildbots (sparc Debian 3.x) require
6
# this much time to start and print.
7
- timeout=3)
8
+ # OBS might require even more
9
+ timeout=10)
10
self.fail("Expected TimeoutExpired.")
11
self.assertEqual(c.exception.output, b'BDFL')
12
13