diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-02-24 00:00:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-24 00:00:15 +0100 |
| commit | 9d098318e2b16a35803d84b70b48c04111f2dddf (patch) | |
| tree | df9d5d2e3aa86c46bcc1ae4f577e35c92babb9e6 /test/behavior/basic.zig | |
| parent | 136a43934bc08dc3aee85f1182904b97456601d3 (diff) | |
| parent | f91fe9afb92dda2b7b1ae37147ce7af40101d5ea (diff) | |
| download | zig-9d098318e2b16a35803d84b70b48c04111f2dddf.tar.gz zig-9d098318e2b16a35803d84b70b48c04111f2dddf.zip | |
Merge pull request #10977 from joachimschmidt557/stage2-aarch64
stage2 AArch64: more support for PIE targets (Mach-O)
Diffstat (limited to 'test/behavior/basic.zig')
| -rw-r--r-- | test/behavior/basic.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig index 6c0fbd028a..024e24e400 100644 --- a/test/behavior/basic.zig +++ b/test/behavior/basic.zig @@ -48,7 +48,6 @@ const g1: i32 = 1233 + 1; var g2: i32 = 0; test "global variables" { - if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest; try expect(g2 == 0); g2 = g1; try expect(g2 == 1234); @@ -604,7 +603,6 @@ test "comptime cast fn to ptr" { } test "equality compare fn ptrs" { - if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest; if (builtin.zig_backend == .stage1) return error.SkipZigTest; var a = &emptyFn; @@ -612,7 +610,6 @@ test "equality compare fn ptrs" { } test "self reference through fn ptr field" { - if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest; if (builtin.zig_backend == .stage1) return error.SkipZigTest; if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; |
