zig

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

commit 2a6eecff3e218015bb425737dabc27760f29fb2d (tree)
parent 19895834b9c00caff29ad8b9173d1845314104c4
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Thu,  5 Sep 2024 01:14:03 +0200

test: Disable `reinterpret packed union` for powerpc64 too.

https://github.com/ziglang/zig/issues/21050

Diffstat:
Mtest/behavior/union.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/behavior/union.zig b/test/behavior/union.zig @@ -1891,7 +1891,7 @@ test "reinterpret packed union" { try comptime S.doTheTest(); if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO - if (builtin.cpu.arch.isPowerPC32()) return error.SkipZigTest; // TODO + if (builtin.cpu.arch.isPowerPC()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21050 if (builtin.cpu.arch.isMIPS()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21050 if (builtin.cpu.arch.isWasm()) return error.SkipZigTest; // TODO try S.doTheTest();