1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-19 09:28:25 +00:00

Clarify sprintf-test's output so it doesn't look like the entire test bench summary

This commit is contained in:
Lauri Kasanen
2022-10-12 18:38:33 +03:00
parent 71d64a3c1c
commit 1e6279aee5
+2 -2
View File
@@ -564,9 +564,9 @@ int main (void)
/* Output the result */
if (Failures) {
printf ("%u tests, %u failures\n", Tests, Failures);
printf ("sprintf-test: %u tests, %u failures\n", Tests, Failures);
} else {
printf ("%u tests: Ok\n", Tests);
printf ("sprintf-test: %u tests: Ok\n", Tests);
}
/* Wait for a key so we can read the result */