summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2017-11-15 22:43:37 +0000
committerGitHub <noreply@github.com>2017-11-15 22:43:37 +0000
commit530c878d417ea6e736addcd1c26db738cee607f6 (patch)
tree67f6d4132345bab7d235d2b24e0fd3b302dc051d
parent15f8d9a232097c63c87d8bb2b959e72bb7c1c798 (diff)
parent19f37f97bbd1d23184d1e53aa1c7295f40c6daf5 (diff)
downloadlibgit2-530c878d417ea6e736addcd1c26db738cee607f6.tar.gz
Merge pull request #4414 from cpoerschke/master-test-status-codes-legend
add test status codes legend to the 'Started' test trace
-rw-r--r--tests/clar/print.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/clar/print.h b/tests/clar/print.h
index 6529b6b4c..916d807c1 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)