Commit 160f657156

Jakub Konka <kubkon@jakubkonka.com>
2022-02-22 22:14:49
Skip unsupported while behavior tests
1 parent 8e4a877
Changed files (1)
test
behavior
test/behavior/while.zig
@@ -124,6 +124,8 @@ test "while copies its payload" {
 }
 
 test "continue and break" {
+    if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest;
+
     try runContinueAndBreakTest();
     try expect(continue_and_break_counter == 8);
 }