zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit bf13b6b41d0b8f96fd8d6a6ebaf294ca7ea43d63 (tree)
parent 9ef1050bb39cb57f4bdf4430761cfb585b4ab014
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sun,  1 Mar 2026 11:53:05 +0100

test: partially disable cmakedefine standalone test

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

Diffstat:
Mtest/standalone/cmakedefine/check.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

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