tests: Meaningful and pretty logging for tests

This commit is contained in:
2026-02-05 04:56:11 +00:00
parent 45ef1fa01a
commit 2705ef9bb7
4 changed files with 30 additions and 30 deletions

View File

@@ -31,7 +31,7 @@ int main(void)
printf("Suite [%s]\n", suite.name);
for (u64 j = 0; j < suite.size; ++j)
{
printf("[%s]: Running...\n", suite.tests[j].name);
printf("\t[%s]: Running...\n", suite.tests[j].name);
suite.tests[j].fn();
}
}