union: skip failing tests on ppc

This commit is contained in:
kcbanner 2023-10-02 20:39:02 -04:00
parent fb33bc99e1
commit 1b8a50ea5e

View File

@ -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();
}