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
This commit is contained in:
Michal Nowak 2026-06-02 09:37:03 +00:00
parent 3d9adf2e4e
commit 03bf372c67

View file

@ -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,
)