authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-09-05 01:14:03+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-09-05 01:15:33+02:00
log2a6eecff3e218015bb425737dabc27760f29fb2d
tree40f4af6a5ed15e1d8ed31d3d2a10c29a3717df18
parent19895834b9c00caff29ad8b9173d1845314104c4
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

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

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

1 files changed, 1 insertions(+), 1 deletions(-)

test/behavior/union.zig+1-1
...@@ -1891,7 +1891,7 @@ test "reinterpret packed union" {...@@ -1891,7 +1891,7 @@ test "reinterpret packed union" {
1891 try comptime S.doTheTest();1891 try comptime S.doTheTest();
18921892
1893 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO1893 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
1894 if (builtin.cpu.arch.isPowerPC32()) return error.SkipZigTest; // TODO1894 if (builtin.cpu.arch.isPowerPC()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21050
1895 if (builtin.cpu.arch.isMIPS()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/210501895 if (builtin.cpu.arch.isMIPS()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21050
1896 if (builtin.cpu.arch.isWasm()) return error.SkipZigTest; // TODO1896 if (builtin.cpu.arch.isWasm()) return error.SkipZigTest; // TODO
1897 try S.doTheTest();1897 try S.doTheTest();