From 74b9cbd8950f4752c5c80925a8baa5fb2492d99f Mon Sep 17 00:00:00 2001 From: Cody Tapscott Date: Sat, 15 Oct 2022 14:45:12 -0700 Subject: [PATCH] stage2: Skip test exposing #13175 This PR (#12873) in combination with this particular test exposed a pre-existing bug (#13175). This means that the test for #13038 has regressed --- test/behavior/eval.zig | 50 ++++++++++++++++++++++++++++++------------ 1 file changed, 36 insertions(+), 14 deletions(-) diff --git a/test/behavior/eval.zig b/test/behavior/eval.zig index aa92f42e240507361799e60bdb47d98cafc86647..2fa07d0de7971b9178470736d51cb946315022a3 100644 --- a/test/behavior/eval.zig +++ b/test/behavior/eval.zig @@ -1401,20 +1401,6 @@ test "continue in inline for inside a comptime switch" { try expect(count == 4); } -test "continue nested inline for loop" { - var a: u8 = 0; - loop: inline for ([_]u8{ 1, 2 }) |x| { - inline for ([_]u8{1}) |y| { - if (x == y) { - continue :loop; - } - } - a = x; - try expect(x == 2); - } - try expect(a == 2); -} - test "length of global array is determinable at comptime" { const S = struct { var bytes: [1024]u8 = undefined; @@ -1425,3 +1411,39 @@ test "length of global array is determinable at comptime" { }; comptime try S.foo(); } + +test "continue nested inline for loop" { + // TODO: https://github.com/ziglang/zig/issues/13175 + if (builtin.zig_backend != .stage1) return error.SkipZigTest; + + var a: u8 = 0; + loop: inline for ([_]u8{ 1, 2 }) |x| { + inline for ([_]u8{1}) |y| { + if (x == y) { + continue :loop; + } + } + a = x; + try expect(x == 2); + } + try expect(a == 2); +} + +test "continue nested inline for loop in named block expr" { + // TODO: https://github.com/ziglang/zig/issues/13175 + if (builtin.zig_backend != .stage1) return error.SkipZigTest; + + var a: u8 = 0; + loop: inline for ([_]u8{ 1, 2 }) |x| { + a = b: { + inline for ([_]u8{1}) |y| { + if (x == y) { + continue :loop; + } + } + break :b x; + }; + try expect(x == 2); + } + try expect(a == 2); +} -- 2.54.0