| author | |
| committer | |
| log | ff97bd21c3b6a5079f33ff389da0716a12806e29 |
| tree | cf2c385a7ed4daafcce4894a18ecc3755fe4073f |
| parent | 46b2f1f705bec886ffb8b0473e0ce43c74145a8d |
2 files changed, 5 insertions(+), 0 deletions(-)
test/standalone.zig+4| ... | ... | @@ -77,6 +77,10 @@ pub const build_cases = [_]BuildCase{ |
| 77 | 77 | .build_root = "test/standalone/test_runner_path", |
| 78 | 78 | .import = @import("standalone/test_runner_path/build.zig"), |
| 79 | 79 | }, |
| 80 | .{ | |
| 81 | .build_root = "test/standalone/test_runner_module_imports", | |
| 82 | .import = @import("standalone/test_runner_module_imports/build.zig"), | |
| 83 | }, | |
| 80 | 84 | .{ |
| 81 | 85 | .build_root = "test/standalone/issue_13970", |
| 82 | 86 | .import = @import("standalone/issue_13970/build.zig"), |
test/standalone/test_runner_module_imports/build.zig+1| ... | ... | @@ -16,4 +16,5 @@ pub fn build(b: *std.Build) void { |
| 16 | 16 | |
| 17 | 17 | const test_step = b.step("test", "Run unit tests"); |
| 18 | 18 | test_step.dependOn(&t.run().step); |
| 19 | b.default_step = test_step; | |
| 19 | 20 | } |