mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
tests: enable test_runner_module_imports standalone test
This commit is contained in:
parent
46b2f1f705
commit
ff97bd21c3
2 changed files with 5 additions and 0 deletions
|
|
@ -77,6 +77,10 @@ pub const build_cases = [_]BuildCase{
|
|||
.build_root = "test/standalone/test_runner_path",
|
||||
.import = @import("standalone/test_runner_path/build.zig"),
|
||||
},
|
||||
.{
|
||||
.build_root = "test/standalone/test_runner_module_imports",
|
||||
.import = @import("standalone/test_runner_module_imports/build.zig"),
|
||||
},
|
||||
.{
|
||||
.build_root = "test/standalone/issue_13970",
|
||||
.import = @import("standalone/issue_13970/build.zig"),
|
||||
|
|
|
|||
|
|
@ -16,4 +16,5 @@ pub fn build(b: *std.Build) void {
|
|||
|
||||
const test_step = b.step("test", "Run unit tests");
|
||||
test_step.dependOn(&t.run().step);
|
||||
b.default_step = test_step;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue