Skip to content

Commit dc29145

Browse files
committed
disable failing behavior test
see tracking issue #12396
1 parent 86292b2 commit dc29145

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/behavior/cast.zig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1431,6 +1431,11 @@ test "coerce between pointers of compatible differently-named floats" {
14311431
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
14321432
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
14331433

1434+
if (builtin.os.tag == .windows) {
1435+
// https://github.com/ziglang/zig/issues/12396
1436+
return error.SkipZigTest;
1437+
}
1438+
14341439
const F = switch (@typeInfo(c_longdouble).Float.bits) {
14351440
16 => f16,
14361441
32 => f32,

0 commit comments

Comments
 (0)