Skip to content

Commit

Permalink
disable test failing on release aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexu committed Dec 22, 2022
1 parent d7104bd commit 2aab84a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/behavior/math.zig
Original file line number Diff line number Diff line change
Expand Up @@ -894,6 +894,8 @@ test "extensive @mulWithOverflow" {
}

test "@mulWithOverflow bitsize > 32" {
// aarch64 fails on a release build of the compiler.
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
Expand Down

0 comments on commit 2aab84a

Please sign in to comment.