Skip to content

Commit 321fec1

Browse files
committed
disable regressed float formatting test case
See #12063
1 parent 4d10fbe commit 321fec1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/std/fmt.zig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2284,6 +2284,10 @@ test "float.hexadecimal.precision" {
22842284
}
22852285

22862286
test "float.decimal" {
2287+
if (builtin.zig_backend == .stage1 and builtin.os.tag == .windows) {
2288+
// https://github.com/ziglang/zig/issues/12063
2289+
return error.SkipZigTest;
2290+
}
22872291
try expectFmt("f64: 152314000000000000000000000000", "f64: {d}", .{@as(f64, 1.52314e+29)});
22882292
try expectFmt("f32: 0", "f32: {d}", .{@as(f32, 0.0)});
22892293
try expectFmt("f32: 0", "f32: {d:.0}", .{@as(f32, 0.0)});

0 commit comments

Comments
 (0)