aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-03-21 15:54:40 -0700
committerAndrew Kelley <andrew@ziglang.org>2024-03-21 15:54:40 -0700
commitaf09d93925fed6d6d981cdd76fd99c752ea265fb (patch)
tree094c439aca8deeceef3c4b16e4617c4d194f69e3 /test
parent4dc50151c4593d289ed903d8177f11d724e3ade0 (diff)
downloadzig-af09d93925fed6d6d981cdd76fd99c752ea265fb.tar.gz
zig-af09d93925fed6d6d981cdd76fd99c752ea265fb.zip
disable failing behavior test: "bitcast packed union to integer"
see tracking issue #19384
Diffstat (limited to 'test')
-rw-r--r--test/behavior/comptime_memory.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/behavior/comptime_memory.zig b/test/behavior/comptime_memory.zig
index e56de79d9d..eac33c83b6 100644
--- a/test/behavior/comptime_memory.zig
+++ b/test/behavior/comptime_memory.zig
@@ -400,6 +400,10 @@ test "accessing reinterpreted memory of parent object" {
}
test "bitcast packed union to integer" {
+ if (true) {
+ // https://github.com/ziglang/zig/issues/19384
+ return error.SkipZigTest;
+ }
const U = packed union {
x: u1,
y: u2,