Skip to content

Commit

Permalink
Merge pull request #109 from clar-test/ethomson/print_newlines
Browse files Browse the repository at this point in the history
clar: emit newline on status
  • Loading branch information
ethomson authored Jan 16, 2025
2 parents 5d8e629 + c1d635f commit 92c08cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clar/print.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ static void clar_print_clap_ontest(const char *suite_name, const char *test_name
switch (status) {
case CL_TEST_OK: printf("ok\n"); break;
case CL_TEST_FAILURE: printf("fail\n"); break;
case CL_TEST_SKIP: printf("skipped"); break;
case CL_TEST_NOTRUN: printf("notrun"); break;
case CL_TEST_SKIP: printf("skipped\n"); break;
case CL_TEST_NOTRUN: printf("notrun\n"); break;
}
} else {
switch (status) {
Expand Down

0 comments on commit 92c08cd

Please sign in to comment.