zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 6603a9c26cda297e9c0baaa48e2fb263de60484d (tree)
parent 39c95e89303be370bc3df0d5fb8f5ef7f4ef8e97
Author: David Rubin <daviru007@icloud.com>
Date:   Sun,  5 May 2024 15:18:00 -0700

testing: fix test runner

Diffstat:
Mlib/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 @@ -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); }