Skip to content

Commit 90c94a2

Browse files
committed
disable failing behavior test: "reinterpret extern union"
see tracking issue ziglang#19389
1 parent 3eb260f commit 90c94a2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/behavior/union.zig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1746,6 +1746,10 @@ fn littleToNativeEndian(comptime T: type, v: T) T {
17461746
}
17471747

17481748
test "reinterpret extern union" {
1749+
if (true) {
1750+
// https://github.com/ziglang/zig/issues/19389
1751+
return error.SkipZigTest;
1752+
}
17491753
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
17501754

17511755
const U = extern union {

0 commit comments

Comments
 (0)