zig

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

commit 96dfffb7f5cd3bcdcc9aaddd69727897f0d92a82 (tree)
parent bbdf8eaf75d651fe26da2cd59bd2ee8795a0d556
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Fri, 14 Nov 2025 22:14:26 +0100

test: enable module tests for maccatalyst targets

Diffstat:
Mtest/tests.zig | 18+++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/test/tests.zig b/test/tests.zig @@ -1186,7 +1186,15 @@ const test_targets = blk: { .use_lld = false, }, - // macOS Targets + // Darwin Targets + + .{ + .target = .{ + .cpu_arch = .aarch64, + .os_tag = .maccatalyst, + .abi = .none, + }, + }, .{ .target = .{ @@ -1211,6 +1219,14 @@ const test_targets = blk: { .{ .target = .{ .cpu_arch = .x86_64, + .os_tag = .maccatalyst, + .abi = .none, + }, + }, + + .{ + .target = .{ + .cpu_arch = .x86_64, .os_tag = .macos, .abi = .none, },