2024-12-04 09:25:36 +01:00
|
|
|
---
|
2025-04-25 01:03:29 +02:00
|
|
|
Lib/test/test_subprocess.py | 6 +++++-
|
|
|
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
2024-12-04 09:25:36 +01:00
|
|
|
|
2025-06-27 16:00:14 +02:00
|
|
|
--- a/Lib/test/test_subprocess.py
|
|
|
|
|
+++ b/Lib/test/test_subprocess.py
|
|
|
|
|
@@ -292,7 +292,11 @@ class ProcessTestCase(BaseTestCase):
|
2025-04-25 01:03:29 +02:00
|
|
|
output = subprocess.check_output(
|
|
|
|
|
[sys.executable, "-c",
|
|
|
|
|
"import time; time.sleep(3600)"],
|
|
|
|
|
- timeout=0.1)
|
|
|
|
|
+ # 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)
|
2024-12-04 09:25:36 +01:00
|
|
|
|
2025-04-25 01:03:29 +02:00
|
|
|
def test_call_kwargs(self):
|
|
|
|
|
# call() function with keyword args
|