Matej Cepl
c8f2873f34
- Add 00398-fix-stack-overwrite-on-32-bit-in-perf-map-test-harness-gh-104811-104823.patch gh#python/cpython#104811 - Refresh all patches - Update to 3.12.0b1: Full changelog can be found here https://docs.python.org/dev/whatsnew/changelog.html#python-3-12-0-beta-1 OBS-URL: https://build.opensuse.org/request/show/1090373 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python312?expand=0&rev=7
19 lines
775 B
Diff
19 lines
775 B
Diff
---
|
|
Lib/test/test_subprocess.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
Index: Python-3.12.0b1/Lib/test/test_subprocess.py
|
|
===================================================================
|
|
--- Python-3.12.0b1.orig/Lib/test/test_subprocess.py
|
|
+++ Python-3.12.0b1/Lib/test/test_subprocess.py
|
|
@@ -279,7 +279,8 @@ class ProcessTestCase(BaseTestCase):
|
|
"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')
|
|
|