summaryrefslogtreecommitdiff
path: root/source/kit_test/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/kit_test/test.c')
-rw-r--r--source/kit_test/test.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/kit_test/test.c b/source/kit_test/test.c
index 07c8871..0e8ca4b 100644
--- a/source/kit_test/test.c
+++ b/source/kit_test/test.c
@@ -144,5 +144,14 @@ int kit_run_tests(int argc, char **argv) {
status = 1;
}
+ if (status == 0) {
+ color_code(term_color, green);
+ printf("OK\n");
+ } else {
+ color_code(term_color, red);
+ printf("FAILED\n");
+ }
+
+ color_code(term_color, white);
return status;
}