authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-03-21 19:07:08-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-03-21 19:07:08-07:00
log3eb260f04259499788fc217d3cf395eea706de6d
treea26b7a55a35e17b6272bf599dacaee15c597e5fa
parentaf09d93925fed6d6d981cdd76fd99c752ea265fb

disable failing behavior test: "comptime bitcast with fields following f80"

see tracking issue #19387

1 files changed, 5 insertions(+), 0 deletions(-)

test/behavior/bitcast.zig+5
...@@ -374,6 +374,11 @@ test "comptime @bitCast packed struct to int and back" {...@@ -374,6 +374,11 @@ test "comptime @bitCast packed struct to int and back" {
374}374}
375375
376test "comptime bitcast with fields following f80" {376test "comptime bitcast with fields following f80" {
377 if (true) {
378 // https://github.com/ziglang/zig/issues/19387
379 return error.SkipZigTest;
380 }
381
377 if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;382 if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest;
378 if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;383 if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
379 if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;384 if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;