test-runner: print separator line after each test-case
authorMarek Chalupa <mchqwerty@gmail.com>
Fri, 21 Nov 2014 10:34:07 +0000 (11:34 +0100)
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>
Fri, 28 Nov 2014 12:04:13 +0000 (14:04 +0200)
Who can read the output when it is a single piece of text?

Signed-off-by: Marek Chalupa <mchqwerty@gmail.com>
tests/test-runner.c

index 67763b3..b6ea098 100644 (file)
@@ -296,6 +296,9 @@ int main(int argc, char *argv[])
                        fprintf(stderr, ", pass.\n");
                } else
                        fprintf(stderr, ", fail.\n");
+
+               /* print separator line */
+               fprintf(stderr, "----------------------------------------\n");
        }
 
        total = &__stop_test_section - &__start_test_section;