From 03bf372c67a2902ef31a4f575ef201487b64a5af Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Tue, 2 Jun 2026 09:37:03 +0000 Subject: [PATCH] Raise nm timeout in the sanitizer defaults check A 1 second timeout could abort the check on loaded runners. Assisted-by: Claude:claude-opus-4-8 --- ci/sanitizer_default_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/sanitizer_default_check.py b/ci/sanitizer_default_check.py index 9a72a00387..f6960f8e47 100755 --- a/ci/sanitizer_default_check.py +++ b/ci/sanitizer_default_check.py @@ -56,7 +56,7 @@ with (build / "meson-info" / "intro-targets.json").open() as f: ["nm", target["filename"][0]], stdin=None, stdout=subprocess.PIPE, - timeout=1, + timeout=60, check=True, shell=False, )