Commit 530c878d417ea6e736addcd1c26db738cee607f6

Edward Thomson 2017-11-15T22:43:37

Merge pull request #4414 from cpoerschke/master-test-status-codes-legend add test status codes legend to the 'Started' test trace

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests/clar/print.h b/tests/clar/print.h
index 6529b6b..916d807 100644
--- a/tests/clar/print.h
+++ b/tests/clar/print.h
@@ -3,7 +3,7 @@ static void clar_print_init(int test_count, int suite_count, const char *suite_n
 {
 	(void)test_count;
 	printf("Loaded %d suites: %s\n", (int)suite_count, suite_names);
-	printf("Started\n");
+	printf("Started (test status codes: OK='.' FAILURE='F' SKIPPED='S')\n");
 }
 
 static void clar_print_shutdown(int test_count, int suite_count, int error_count)