Skip to content

Commit 3eb260f

Browse files
committed
disable failing behavior test: "comptime bitcast with fields following f80"
see tracking issue ziglang#19387
1 parent af09d93 commit 3eb260f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/behavior/bitcast.zig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,11 @@ test "comptime @bitCast packed struct to int and back" {
374374
}
375375

376376
test "comptime bitcast with fields following f80" {
377+
if (true) {
378+
// https://github.com/ziglang/zig/issues/19387
379+
return error.SkipZigTest;
380+
}
381+
377382
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
378383
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
379384
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;

0 commit comments

Comments
 (0)