From fec8418b581f9fac723b2ab96476d2d4b515b72e Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Mon, 8 May 2023 12:27:11 +0200 Subject: [PATCH] Increase killthreads timeout to 10s to fix CI issues (#1701) --- tests/gdb-tests/tests/test_command_killthreads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gdb-tests/tests/test_command_killthreads.py b/tests/gdb-tests/tests/test_command_killthreads.py index 8b15df94f..32959b4ea 100644 --- a/tests/gdb-tests/tests/test_command_killthreads.py +++ b/tests/gdb-tests/tests/test_command_killthreads.py @@ -7,7 +7,7 @@ import tests REFERENCE_BINARY_THREADS = tests.binaries.get("multiple_threads.out") -def wait_until(predicate: callable, timeout: int = 5): +def wait_until(predicate: callable, timeout: int = 10): """ Waits until the predicate returns True or timeout is reached. """