zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit af09d93925fed6d6d981cdd76fd99c752ea265fb (tree)
parent 4dc50151c4593d289ed903d8177f11d724e3ade0
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Thu, 21 Mar 2024 15:54:40 -0700

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

see tracking issue #19384

Diffstat:
Mtest/behavior/comptime_memory.zig | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git 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,