Commit 6d3577ef authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Print test name after running it

parent 67cf8224
...@@ -59,6 +59,7 @@ static void test__##name(void); \ ...@@ -59,6 +59,7 @@ static void test__##name(void); \
static void test_##name(void) { \ static void test_##name(void) { \
current_test = #name; \ current_test = #name; \
test__##name(); \ test__##name(); \
printf("%s: PASSED\n", current_test); \
} \ } \
static void test__##name(void) static void test__##name(void)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment