Skip to content

Commit 96dfffb

Browse files
committed
test: enable module tests for maccatalyst targets
1 parent bbdf8ea commit 96dfffb

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

test/tests.zig

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1186,7 +1186,15 @@ const test_targets = blk: {
11861186
.use_lld = false,
11871187
},
11881188

1189-
// macOS Targets
1189+
// Darwin Targets
1190+
1191+
.{
1192+
.target = .{
1193+
.cpu_arch = .aarch64,
1194+
.os_tag = .maccatalyst,
1195+
.abi = .none,
1196+
},
1197+
},
11901198

11911199
.{
11921200
.target = .{
@@ -1208,6 +1216,14 @@ const test_targets = blk: {
12081216
.strip = true,
12091217
},
12101218

1219+
.{
1220+
.target = .{
1221+
.cpu_arch = .x86_64,
1222+
.os_tag = .maccatalyst,
1223+
.abi = .none,
1224+
},
1225+
},
1226+
12111227
.{
12121228
.target = .{
12131229
.cpu_arch = .x86_64,

0 commit comments

Comments
 (0)