authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-03-01 11:53:05+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-03-01 11:53:05+01:00
logbf13b6b41d0b8f96fd8d6a6ebaf294ca7ea43d63
tree941a772c1b0d370c3faa71a053c2f49e8da62807
parent9ef1050bb39cb57f4bdf4430761cfb585b4ab014
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

test: partially disable cmakedefine standalone test

https://codeberg.org/ziglang/zig/issues/31368

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

test/standalone/cmakedefine/check.zig+2
...@@ -17,6 +17,8 @@ pub fn main(init: std.process.Init) !void {...@@ -17,6 +17,8 @@ pub fn main(init: std.process.Init) !void {
17 }17 }
18 const actual_without_comment = actual[comment_str.len..];18 const actual_without_comment = actual[comment_str.len..];
1919
20 if (true) return; // https://codeberg.org/ziglang/zig/issues/31368
21
20 if (!std.mem.eql(u8, actual_without_comment, expected)) {22 if (!std.mem.eql(u8, actual_without_comment, expected)) {
21 return error.DoesNotMatch;23 return error.DoesNotMatch;
22 }24 }