diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2024-01-29 15:33:45 +0100 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2024-02-06 19:01:17 +0100 |
| commit | 52066bf8e4855e610754603cbcc64dbfd16796fe (patch) | |
| tree | c9b8a5de0f0c09182294525c0025558653428801 /test/behavior/tuple.zig | |
| parent | db6addf31ac6566fc219b6dbe971c5dd96d14edc (diff) | |
| download | zig-52066bf8e4855e610754603cbcc64dbfd16796fe.tar.gz zig-52066bf8e4855e610754603cbcc64dbfd16796fe.zip | |
x86_64+macho: pass more behavior tests
Diffstat (limited to 'test/behavior/tuple.zig')
| -rw-r--r-- | test/behavior/tuple.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/tuple.zig b/test/behavior/tuple.zig index 0e382b3a9d..36b36a2b71 100644 --- a/test/behavior/tuple.zig +++ b/test/behavior/tuple.zig @@ -386,7 +386,7 @@ test "tuple of struct concatenation and coercion to array" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO - if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_x86_64 and builtin.target.ofmt != .elf and builtin.target.ofmt != .macho) return error.SkipZigTest; const StructWithDefault = struct { value: f32 = 42 }; const SomeStruct = struct { array: [4]StructWithDefault }; |
