blob: f2fdbfb0e01f6d550bfd9fbf5e5772ffd67aaa47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
const std = @import("std");
pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Test the program");
b.default_step = test_step;
const test_exe = b.addTest(.{ .root_module = b.createModule(.{
.target = b.graph.host,
.root_source_file = b.path("test.zig"),
}) });
test_exe.test_runner = .{
.path = b.path("test_runner.zig"),
.mode = .simple,
};
const test_run = b.addRunArtifact(test_exe);
test_step.dependOn(&test_run.step);
}
|