commit 1b8a50ea5e9a179bf85486230d6b058d1379a4aa (tree)
parent fb33bc99e17427b4dc4143b8c2a5745a9d978db2
Author: kcbanner <kcbanner@gmail.com>
Date: Mon, 2 Oct 2023 20:39:02 -0400
union: skip failing tests on ppc
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/test/behavior/union.zig b/test/behavior/union.zig
@@ -1839,6 +1839,7 @@ test "reinterpret packed union" {
try comptime S.doTheTest();
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
+ if (builtin.cpu.arch.isPPC()) return error.SkipZigTest; // TODO
if (builtin.cpu.arch.isWasm()) return error.SkipZigTest; // TODO
try S.doTheTest();
}