diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-03-25 22:22:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-25 22:22:47 -0400 |
| commit | bcd7eb012ac3d4a6365eea0b69aa89b0aef57243 (patch) | |
| tree | 102e961e3ac86d8dc0d6b0669b29f3017c1c0b23 /test/behavior | |
| parent | c1098e90367c8965fbf0c65e4967d938986af8b0 (diff) | |
| parent | f7da4b9bc802b66d409413596204df355604fc67 (diff) | |
| download | zig-bcd7eb012ac3d4a6365eea0b69aa89b0aef57243.tar.gz zig-bcd7eb012ac3d4a6365eea0b69aa89b0aef57243.zip | |
Merge pull request #11304 from joachimschmidt557/stage2-aarch64
stage2 AArch64: remove MCValue.embedded_in_code
Diffstat (limited to 'test/behavior')
| -rw-r--r-- | test/behavior/optional.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/optional.zig b/test/behavior/optional.zig index 6f5623d827..9956c3f3ec 100644 --- a/test/behavior/optional.zig +++ b/test/behavior/optional.zig @@ -33,6 +33,8 @@ test "optional pointer to size zero struct" { } test "equality compare optional pointers" { + if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO + try testNullPtrsEql(); comptime try testNullPtrsEql(); } |
