test-runner: print separator line after each test-case

Who can read the output when it is a single piece of text?

Signed-off-by: Marek Chalupa <mchqwerty@gmail.com>
This commit is contained in:
Marek Chalupa 2014-11-21 11:34:07 +01:00 committed by Pekka Paalanen
parent bef2948348
commit 57050589b6

View 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;