From 0304dc3d37ba1e8443a8a1c835ad9c0988e4a3df Mon Sep 17 00:00:00 2001 From: Manlio Perillo Date: Sat, 13 May 2023 20:36:49 +0200 Subject: build: show the logo in named mode When running `zig build -Dn=n`, ensure that the logo is printed. Update the tests. Closes #214 --- test/tests.zig | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test') diff --git a/test/tests.zig b/test/tests.zig index 6899e9c..0bde5c1 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -151,6 +151,16 @@ const CheckNamedStep = struct { defer stderr_file.close(); const stderr = stderr_file.reader(); + { + // Skip the logo. + const nlines = mem.count(u8, root.logo, "\n"); + var buf: [80]u8 = undefined; + + var lineno: usize = 0; + while (lineno < nlines) : (lineno += 1) { + _ = try readLine(stderr, &buf); + } + } try check_output(step, ex, stderr); } }; -- cgit v1.2.3