diff options
| author | joachimschmidt557 <joachim.schmidt557@outlook.com> | 2022-02-19 19:37:49 +0100 |
|---|---|---|
| committer | joachimschmidt557 <joachim.schmidt557@outlook.com> | 2022-02-21 22:44:40 +0100 |
| commit | a9154a7eaf3e126ade91732df3ee14f3988b08f5 (patch) | |
| tree | a935ac94a163ee68fe1041d5c946319a3396b053 /test/behavior/basic.zig | |
| parent | d8da9a01fcfebf14a9f262cabf36f1c0767d2e2b (diff) | |
| download | zig-a9154a7eaf3e126ade91732df3ee14f3988b08f5.tar.gz zig-a9154a7eaf3e126ade91732df3ee14f3988b08f5.zip | |
stage2 AArch64: implement storing to memory
Diffstat (limited to 'test/behavior/basic.zig')
| -rw-r--r-- | test/behavior/basic.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig index 05c1f1cda3..bd862a7ef9 100644 --- a/test/behavior/basic.zig +++ b/test/behavior/basic.zig @@ -48,7 +48,7 @@ const g1: i32 = 1233 + 1; var g2: i32 = 0; test "global variables" { - if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest; try expect(g2 == 0); g2 = g1; try expect(g2 == 1234); |
