authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-03-21 15:54:40-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-03-21 15:54:40-07:00
logaf09d93925fed6d6d981cdd76fd99c752ea265fb
tree094c439aca8deeceef3c4b16e4617c4d194f69e3
parent4dc50151c4593d289ed903d8177f11d724e3ade0

disable failing behavior test: "bitcast packed union to integer"

see tracking issue #19384

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

test/behavior/comptime_memory.zig+4
...@@ -400,6 +400,10 @@ test "accessing reinterpreted memory of parent object" {...@@ -400,6 +400,10 @@ test "accessing reinterpreted memory of parent object" {
400}400}
401401
402test "bitcast packed union to integer" {402test "bitcast packed union to integer" {
403 if (true) {
404 // https://github.com/ziglang/zig/issues/19384
405 return error.SkipZigTest;
406 }
403 const U = packed union {407 const U = packed union {
404 x: u1,408 x: u1,
405 y: u2,409 y: u2,