From a4eefd450b250c33fd7ec4263b434aff1e34703b Mon Sep 17 00:00:00 2001 From: sirlilpanda Date: Fri, 29 May 2026 09:22:13 +1200 Subject: [PATCH] fixed build --- build.zig | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/build.zig b/build.zig index 7ed4cc4..feba256 100644 --- a/build.zig +++ b/build.zig @@ -38,19 +38,12 @@ pub fn build(b: *std.Build) void { // run_cmd.addArgs(args); // } - // const mod_tests = b.addTest(.{ - // .root_module = mod, - // }); + const mod_tests = b.addTest(.{ + .root_module = mod, + }); - // const run_mod_tests = b.addRunArtifact(mod_tests); + const run_mod_tests = b.addRunArtifact(mod_tests); - // const exe_tests = b.addTest(.{ - // .root_module = exe.root_module, - // }); - - // const run_exe_tests = b.addRunArtifact(exe_tests); - - // const test_step = b.step("test", "Run tests"); - // test_step.dependOn(&run_mod_tests.step); - // test_step.dependOn(&run_exe_tests.step); + const test_step = b.step("test", "Run tests"); + test_step.dependOn(&run_mod_tests.step); }