aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-09-05 01:14:03 +0200
committerAlex Rønne Petersen <alex@alexrp.com>2024-09-05 01:15:33 +0200
commit2a6eecff3e218015bb425737dabc27760f29fb2d (patch)
tree40f4af6a5ed15e1d8ed31d3d2a10c29a3717df18 /test
parent19895834b9c00caff29ad8b9173d1845314104c4 (diff)
downloadzig-2a6eecff3e218015bb425737dabc27760f29fb2d.tar.gz
zig-2a6eecff3e218015bb425737dabc27760f29fb2d.zip
test: Disable `reinterpret packed union` for powerpc64 too.
https://github.com/ziglang/zig/issues/21050
Diffstat (limited to 'test')
-rw-r--r--test/behavior/union.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/union.zig b/test/behavior/union.zig
index a952e9b9d3..9938c3c045 100644
--- 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();