Moving the secret inside the tests, not in a library function.

This commit is contained in:
Geoffrey Challen
2015-12-31 12:03:41 -05:00
parent ff1d44b505
commit 5271fc50c7
4 changed files with 8 additions and 31 deletions

View File

@@ -98,9 +98,9 @@ static
void
success(bool status, const char *msg) {
if (status == SUCCESS) {
skprintf("%s: SUCCESS\n", msg);
kprintf("%s%s: SUCCESS\n", KERNEL_SECRET, msg);
} else {
skprintf("%s: FAIL\n", msg);
kprintf("%s%s: FAIL\n", KERNEL_SECRET, msg);
}
}