From: Michal Nowak Date: Tue, 2 Jun 2026 09:37:03 +0000 (+0000) Subject: Raise nm timeout in the sanitizer defaults check X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03bf372c67a2902ef31a4f575ef201487b64a5af;p=thirdparty%2Fbind9.git 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 --- 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, )