Skip to content

Commit af09d93

Browse files
committed
disable failing behavior test: "bitcast packed union to integer"
see tracking issue #19384
1 parent 4dc5015 commit af09d93

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/behavior/comptime_memory.zig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,10 @@ test "accessing reinterpreted memory of parent object" {
400400
}
401401

402402
test "bitcast packed union to integer" {
403+
if (true) {
404+
// https://github.com/ziglang/zig/issues/19384
405+
return error.SkipZigTest;
406+
}
403407
const U = packed union {
404408
x: u1,
405409
y: u2,

0 commit comments

Comments
 (0)