From 6603a9c26cda297e9c0baaa48e2fb263de60484d Mon Sep 17 00:00:00 2001 From: David Rubin Date: Sun, 5 May 2024 15:18:00 -0700 Subject: [PATCH] testing: fix test runner --- lib/compiler/test_runner.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/test_runner.zig b/lib/compiler/test_runner.zig index c02ee0996a..27c5761f9f 100644 --- a/lib/compiler/test_runner.zig +++ b/lib/compiler/test_runner.zig @@ -252,6 +252,6 @@ pub fn mainSimple() anyerror!void { } if (print_summary) { stderr.writer().print("{} passed, {} skipped, {} failed\n", .{ passed, skipped, failed }) catch {}; - if (failed != 0) std.process.exit(1); } + if (failed != 0) std.process.exit(1); }