aboutsummaryrefslogtreecommitdiff
path: root/apps/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/test.c')
-rw-r--r--apps/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/test.c b/apps/test.c
index c47e060..101c215 100644
--- a/apps/test.c
+++ b/apps/test.c
@@ -24,8 +24,8 @@ void pass_or_fail(const char *file_name, int line_num, const char *func, const c
const char *second, int success)
{
failed += success ? 0 : 1;
- printf("\x1B[%s\x1B[0m %s:%d: %s: %s == %s\n", success ? "32m[PASS]" : "31m[FAIL]",
- file_name, line_num, func, first, second);
+ log("\x1B[%s\x1B[0m %s:%d: %s: %s == %s\n", success ? "32m[PASS]" : "31m[FAIL]", file_name,
+ line_num, func, first, second);
}
void test_malloc()