1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Raise the timeout for test commands to 50 minutes
Some of the tests, e.g. the window-resize one, may take a long time on
busy builder hosts.
Bug-Debian: https://bugs.debian.org/1032592
Forwarded: no
Author: Peter Pentchev <roam@ringlet.net>
Last-Update: 2025-03-13
--- a/tests/cli-tests/run.py
+++ b/tests/cli-tests/run.py
@@ -640,7 +640,7 @@
help="Preserve the scratch directory TEST_DIR/scratch/ for debugging purposes."
)
parser.add_argument("--verbose", action="store_true", help="Verbose test output.")
- parser.add_argument("--timeout", default=200, type=int, help="Test case timeout in seconds. Set to 0 to disable timeouts.")
+ parser.add_argument("--timeout", default=60 * 50, type=int, help="Test case timeout in seconds. Set to 0 to disable timeouts.")
parser.add_argument(
"--exec-prefix",
default=None,
|