all: use latest Zig build API (do not specify .kind = .test_exe)

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-04-25 09:20:34 -07:00 committed by Stephen Gutekanst
parent 80a071be37
commit 1ccec8339f
4 changed files with 0 additions and 5 deletions

View file

@ -10,7 +10,6 @@ pub fn build(b: *std.Build) void {
pub fn testStep(b: *std.Build, optimize: std.builtin.OptimizeMode, target: std.zig.CrossTarget) *std.build.RunStep {
const main_tests = b.addTest(.{
.name = "sysjs-tests",
.kind = .test_exe,
.root_source_file = .{ .path = sdkPath("/src/main.zig") },
.target = target,
.optimize = optimize,