diff options
author | Anastasis Grammenos <anastasis.gramm2@gmail.com> | 2018-10-07 16:30:53 +0300 |
---|---|---|
committer | Anastasis Grammenos <anastasis.gramm2@gmail.com> | 2018-10-07 16:30:53 +0300 |
commit | 73319aae43fdc9d352326948b9481c6ca4ecb00e (patch) | |
tree | 59bb2e3cde9618b49b4d00a8b0c4ce85d77720fd /unit/ck-test.c | |
parent | 915fcc7dd6e55636aefd5998f6e2c273c2f48344 (diff) | |
download | ck-73319aae43fdc9d352326948b9481c6ca4ecb00e.tar.gz ck-73319aae43fdc9d352326948b9481c6ca4ecb00e.tar.bz2 ck-73319aae43fdc9d352326948b9481c6ca4ecb00e.zip |
Make test output more friendly to they eyes!
Diffstat (limited to 'unit/ck-test.c')
-rw-r--r-- | unit/ck-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unit/ck-test.c b/unit/ck-test.c index 59a8809..42941f9 100644 --- a/unit/ck-test.c +++ b/unit/ck-test.c @@ -28,9 +28,9 @@ void ck_list_add() { int main() { #define X(TEST, DESC) \ - printf("--[%s]--\n", DESC); \ + printf("=> %s\n", DESC); \ TEST(); \ - printf("--[Passed]--\n\n"); + printf("Passed\n\n"); CK_UNIT_TESTS #undef X } |