1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 01:57:02 +09:00

build: show the logo in named mode

When running `zig build -Dn=n`, ensure that the logo is printed.

Update the tests.

Closes #214
This commit is contained in:
Manlio Perillo 2023-05-13 20:36:49 +02:00
parent dc2539ec4e
commit 0304dc3d37
2 changed files with 13 additions and 0 deletions

View file

@ -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);
}
};