- Added @format attribute for compile time printf validation #2057.

- Bug when printing a boolean value as an integer using printf.
This commit is contained in:
Christoffer Lerno
2025-03-24 13:32:44 +01:00
parent 50d7919fec
commit d760378b02
10 changed files with 186 additions and 8 deletions

View File

@@ -448,7 +448,7 @@ fn void test_file(Path file_path)
if (result != 0 && result != 1)
{
(void)io::copy_to(&&compilation.stdout(), &out);
io::printfn("FAILED - Error(%s): ", result, out);
io::printfn("FAILED - Error(%s): %s", result, out);
return;
}
if (!parse_result(out, settings)) return;