From 64e0937f042fade7abb7e1e62e71e921db693698 Mon Sep 17 00:00:00 2001 From: stevenfontanella Date: Mon, 29 Dec 2025 22:34:50 +0000 Subject: [PATCH] Increment failure count on exception in spec tests --- check.py | 1 + 1 file changed, 1 insertion(+) diff --git a/check.py b/check.py index 0578bda7da0..a8bb9415d85 100755 --- a/check.py +++ b/check.py @@ -257,6 +257,7 @@ def run_spec_test_with_wrapped_stdout(wast: Path): try: run_one_spec_test(wast, stdout=out) except Exception as e: + shared.num_failures += 1 # Serialize exceptions into the output string buffer # so they can be reported on the main thread. print(e, file=out)