Skip to content

Commit 31281a7

Browse files
committed
disable regressed math.sign test case
see #12012
1 parent 321fec1 commit 31281a7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/std/math.zig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1653,6 +1653,10 @@ test "sign" {
16531653
// https://github.com/ziglang/zig/issues/12012
16541654
return error.SkipZigTest;
16551655
}
1656+
if ((builtin.zig_backend == .stage1) and builtin.cpu.arch == .x86_64) {
1657+
// https://github.com/ziglang/zig/issues/12012
1658+
return error.SkipZigTest;
1659+
}
16561660
try testSign();
16571661
comptime try testSign();
16581662
}

0 commit comments

Comments
 (0)