authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-02-22 22:14:49+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-02-22 22:14:49+01:00
log160f6571566b09e460201a1e13381fca785a8f62
treec0735365f8afc2c31518d3e701bf9c17508dcd0a
parent8e4a8771f56f41a56264eb000ee347ddf7b71dc4

Skip unsupported while behavior tests


1 files changed, 2 insertions(+), 0 deletions(-)

test/behavior/while.zig+2
......@@ -124,6 +124,8 @@ test "while copies its payload" {
124124}
125125
126126test "continue and break" {
127 if (builtin.zig_backend == .stage2_aarch64 and builtin.os.tag == .macos) return error.SkipZigTest;
128
127129 try runContinueAndBreakTest();
128130 try expect(continue_and_break_counter == 8);
129131}