From f95de3457cade564d9affa14f9c3ec443c5a74da Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Sat, 5 Aug 2023 13:11:30 -0700 Subject: [PATCH] need to address testing --- build.zig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.zig b/build.zig index c4ba57f..f053a2e 100644 --- a/build.zig +++ b/build.zig @@ -1,7 +1,6 @@ const std = @import("std"); const builtin = @import("builtin"); const Builder = @import("std").build.Builder; -const tst = @import("build_test.zig"); pub fn build(b: *Builder) !void { // Standard target options allows the person running `zig build` to choose @@ -44,8 +43,7 @@ pub fn build(b: *Builder) !void { const run_step = b.step("run", "Run the app"); run_step.dependOn(&run_cmd.step); - // TODO: Demo for testing is kind of terrible. Proper testing - // var test_step = try tst.addTestStep(b, optimize, exe.packages.items); + // TODO: Proper testing var codegen: ?*std.build.Step = null; if (target.getOs().tag == .linux and false) {