disable regressed math.sign test case

see #12012
This commit is contained in:
Andrew Kelley 2022-07-09 15:43:33 -07:00
parent 321fec1aa6
commit 31281a7d14

View File

@ -1653,6 +1653,10 @@ test "sign" {
// https://github.com/ziglang/zig/issues/12012 // https://github.com/ziglang/zig/issues/12012
return error.SkipZigTest; return error.SkipZigTest;
} }
if ((builtin.zig_backend == .stage1) and builtin.cpu.arch == .x86_64) {
// https://github.com/ziglang/zig/issues/12012
return error.SkipZigTest;
}
try testSign(); try testSign();
comptime try testSign(); comptime try testSign();
} }