zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit ff97bd21c3b6a5079f33ff389da0716a12806e29 (tree)
parent 46b2f1f705bec886ffb8b0473e0ce43c74145a8d
Author: dweiller <4678790+dweiller@users.noreplay.github.com>
Date:   Thu, 30 Mar 2023 13:18:13 +1100

tests: enable test_runner_module_imports standalone test

Diffstat:
Mtest/standalone.zig | 4++++
Mtest/standalone/test_runner_module_imports/build.zig | 1+
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/test/standalone.zig b/test/standalone.zig @@ -78,6 +78,10 @@ pub const build_cases = [_]BuildCase{ .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"), }, diff --git a/test/standalone/test_runner_module_imports/build.zig b/test/standalone/test_runner_module_imports/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; }