commit e91654b1e730ad8082eeb8bb0ae90a17ca69f679 (tree)
parent 28886ca9ec3170c3d97308c6e504cdcc50654b65
Author: Justus Klausecker <justus@klausecker.de>
Date: Wed, 11 Mar 2026 21:04:32 +0100
test: disable switch behavior test switching on type >64bits for cbe
workaround for #31467
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/test/behavior/switch.zig b/test/behavior/switch.zig
@@ -1406,6 +1406,8 @@ test "switch on packed union" {
}
test "switch on nested packed containers" {
+ if (builtin.object_format == .c) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/31467
+
const P = packed struct {
iu: u17,
is: i31,