Skip to content

Commit 2aab84a

Browse files
committed
disable test failing on release aarch64
1 parent d7104bd commit 2aab84a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/behavior/math.zig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,8 @@ test "extensive @mulWithOverflow" {
894894
}
895895

896896
test "@mulWithOverflow bitsize > 32" {
897+
// aarch64 fails on a release build of the compiler.
898+
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
897899
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
898900
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
899901
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO

0 commit comments

Comments
 (0)