Skip unsupported while behavior tests

This commit is contained in:
Jakub Konka 2022-02-22 22:14:49 +01:00
parent 8e4a8771f5
commit 160f657156

View File

@ -124,6 +124,8 @@ test "while copies its payload" {
} }
test "continue and break" { test "continue and break" {
if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest;
try runContinueAndBreakTest(); try runContinueAndBreakTest();
try expect(continue_and_break_counter == 8); try expect(continue_and_break_counter == 8);
} }