tests(Clip): added explicit interface checking
This commit is contained in:
parent
47f2491ae0
commit
ecdcf0c0b8
2 changed files with 42 additions and 0 deletions
13
build.zig
13
build.zig
|
|
@ -14,6 +14,19 @@ pub fn build(b: *std.Build) void {
|
|||
|
||||
b.installArtifact(exe);
|
||||
|
||||
const tests = b.addTest(.{
|
||||
.name = "tpb",
|
||||
.root_module = b.createModule(.{
|
||||
.root_source_file = b.path("src/main.zig"),
|
||||
.target = target,
|
||||
.optimize = optimize,
|
||||
}),
|
||||
});
|
||||
|
||||
const test_step = b.step("test", "Run tests");
|
||||
const run_tests = b.addRunArtifact(tests);
|
||||
test_step.dependOn(&run_tests.step);
|
||||
|
||||
const run_step = b.step("run", "Run the app");
|
||||
|
||||
const run_cmd = b.addRunArtifact(exe);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue