mirror of
https://github.com/ziglang/zig.git
synced 2026-01-09 17:05:16 +00:00
* remove setName, setFilter, and setTestRunner. Please set these options directly when creating the CompileStep. * removed unused field * remove computeOutFileNames and inline the logic, making clear the goal of avoiding state mutations after the build step is created.
24 lines
724 B
Zig
24 lines
724 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const test_step = b.step("test", "Test it");
|
|
b.default_step = test_step;
|
|
|
|
const test1 = b.addTest(.{
|
|
.root_source_file = .{ .path = "test_root/empty.zig" },
|
|
.test_runner = "src/main.zig",
|
|
});
|
|
const test2 = b.addTest(.{
|
|
.root_source_file = .{ .path = "src/empty.zig" },
|
|
.test_runner = "src/main.zig",
|
|
});
|
|
const test3 = b.addTest(.{
|
|
.root_source_file = .{ .path = "empty.zig" },
|
|
.test_runner = "src/main.zig",
|
|
});
|
|
|
|
test_step.dependOn(&b.addRunArtifact(test1).step);
|
|
test_step.dependOn(&b.addRunArtifact(test2).step);
|
|
test_step.dependOn(&b.addRunArtifact(test3).step);
|
|
}
|