aboutsummaryrefslogtreecommitdiff
path: root/test/tests.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/tests.zig')
-rw-r--r--test/tests.zig22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig
index 3666ef1028..8bc415d28b 100644
--- a/test/tests.zig
+++ b/test/tests.zig
@@ -21,6 +21,7 @@ const assemble_and_link = @import("assemble_and_link.zig");
const translate_c = @import("translate_c.zig");
const run_translated_c = @import("run_translated_c.zig");
const gen_h = @import("gen_h.zig");
+const link = @import("link.zig");
// Implementations
pub const TranslateCContext = @import("src/translate_c.zig").TranslateCContext;
@@ -479,6 +480,27 @@ pub fn addStandaloneTests(
return cases.step;
}
+pub fn addLinkTests(
+ b: *build.Builder,
+ test_filter: ?[]const u8,
+ modes: []const Mode,
+ enable_macos_sdk: bool,
+) *build.Step {
+ const cases = b.allocator.create(StandaloneContext) catch unreachable;
+ cases.* = StandaloneContext{
+ .b = b,
+ .step = b.step("test-link", "Run the linker tests"),
+ .test_index = 0,
+ .test_filter = test_filter,
+ .modes = modes,
+ .skip_non_native = true,
+ .enable_macos_sdk = enable_macos_sdk,
+ .target = .{},
+ };
+ link.addCases(cases);
+ return cases.step;
+}
+
pub fn addCliTests(b: *build.Builder, test_filter: ?[]const u8, modes: []const Mode) *build.Step {
_ = test_filter;
_ = modes;