aboutsummaryrefslogtreecommitdiff
path: root/test/behavior
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-02-22 22:14:49 +0100
committerJakub Konka <kubkon@jakubkonka.com>2022-02-22 22:14:49 +0100
commit160f6571566b09e460201a1e13381fca785a8f62 (patch)
treec0735365f8afc2c31518d3e701bf9c17508dcd0a /test/behavior
parent8e4a8771f56f41a56264eb000ee347ddf7b71dc4 (diff)
downloadzig-160f6571566b09e460201a1e13381fca785a8f62.tar.gz
zig-160f6571566b09e460201a1e13381fca785a8f62.zip
Skip unsupported while behavior tests
Diffstat (limited to 'test/behavior')
-rw-r--r--test/behavior/while.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/while.zig b/test/behavior/while.zig
index 36926650da..86724d166a 100644
--- a/test/behavior/while.zig
+++ b/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);
}