diff options
Diffstat (limited to 'lib/std/math.zig')
| -rw-r--r-- | lib/std/math.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/std/math.zig b/lib/std/math.zig index 94a7cc7e01..0487ef2d3c 100644 --- a/lib/std/math.zig +++ b/lib/std/math.zig @@ -1647,6 +1647,10 @@ fn testSign() !void { } test "sign" { + if (builtin.zig_backend == .stage1 or builtin.zig_backend == .stage2_llvm) { + // https://github.com/ziglang/zig/issues/12012 + return error.SkipZigTest; + } try testSign(); comptime try testSign(); } |
