diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-17 10:53:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-17 10:53:46 +0200 |
| commit | 3091efaa1845bf049ce1d4aaacb95e3b1e346453 (patch) | |
| tree | ab29b3ec3f922885d6f8eef7cd0a34d8f1433ac7 /test/tests.zig | |
| parent | 54b508776050470b5124ff4d7aee9be0ef113bca (diff) | |
| parent | 9ae8c48fdf796919c5f0c49b9a72aba1c9916733 (diff) | |
| download | zig-3091efaa1845bf049ce1d4aaacb95e3b1e346453.tar.gz zig-3091efaa1845bf049ce1d4aaacb95e3b1e346453.zip | |
Merge pull request #25609 from alexrp/test-targets
`test`: put some niche targets behind `-Dtest-extra-targets`
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig index 70bdc72c5c..3625b560cd 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -176,6 +176,7 @@ const test_targets = blk: { }, .linkage = .dynamic, .link_libc = true, + .extra_target = true, }, .{ .target = .{ @@ -607,6 +608,7 @@ const test_targets = blk: { .abi = .muslabin32, }, .link_libc = true, + .extra_target = true, }, .{ .target = .{ @@ -633,6 +635,7 @@ const test_targets = blk: { .abi = .gnuabin32, }, .link_libc = true, + .extra_target = true, }, .{ @@ -667,6 +670,7 @@ const test_targets = blk: { .abi = .muslabin32, }, .link_libc = true, + .extra_target = true, }, .{ .target = .{ @@ -693,6 +697,7 @@ const test_targets = blk: { .abi = .gnuabin32, }, .link_libc = true, + .extra_target = true, }, .{ @@ -701,6 +706,7 @@ const test_targets = blk: { .os_tag = .linux, .abi = .eabi, }, + .extra_target = true, }, .{ .target = .{ @@ -716,6 +722,7 @@ const test_targets = blk: { .abi = .musleabi, }, .link_libc = true, + .extra_target = true, }, .{ .target = .{ @@ -758,6 +765,7 @@ const test_targets = blk: { .link_libc = true, // https://github.com/ziglang/zig/issues/2256 .skip_modules = &.{"std"}, + .extra_target = true, }, .{ .target = .{ @@ -1129,6 +1137,7 @@ const test_targets = blk: { .abi = .gnux32, }, .link_libc = true, + .extra_target = true, }, .{ .target = .{ @@ -1146,6 +1155,7 @@ const test_targets = blk: { }, .linkage = .dynamic, .link_libc = true, + .extra_target = true, }, .{ .target = .{ @@ -1154,6 +1164,7 @@ const test_targets = blk: { .abi = .muslx32, }, .link_libc = true, + .extra_target = true, }, .{ .target = .{ @@ -1309,6 +1320,7 @@ const test_targets = blk: { .abi = .eabi, }, .link_libc = true, + .extra_target = true, }, .{ .target = .{ @@ -1821,7 +1833,6 @@ const c_abi_targets = blk: { .os_tag = .linux, .abi = .muslx32, }, - .use_llvm = true, }, // WASI Targets |
