Loading test/testutil/tests.c +4 −2 Original line number Original line Diff line number Diff line Loading @@ -137,11 +137,13 @@ void test_error(const char *file, int line, const char *desc, ...) void test_note(const char *fmt, ...) void test_note(const char *fmt, ...) { { if (fmt != NULL) { va_list ap; va_list ap; if (fmt != NULL) { test_printf_stderr("%*s# ", subtest_level(), ""); test_printf_stderr("%*s# ", subtest_level(), ""); va_start(ap, fmt); test_vprintf_stderr(fmt, ap); test_vprintf_stderr(fmt, ap); va_end(ap); test_printf_stderr("\n"); test_printf_stderr("\n"); } } test_flush_stderr(); test_flush_stderr(); Loading Loading
test/testutil/tests.c +4 −2 Original line number Original line Diff line number Diff line Loading @@ -137,11 +137,13 @@ void test_error(const char *file, int line, const char *desc, ...) void test_note(const char *fmt, ...) void test_note(const char *fmt, ...) { { if (fmt != NULL) { va_list ap; va_list ap; if (fmt != NULL) { test_printf_stderr("%*s# ", subtest_level(), ""); test_printf_stderr("%*s# ", subtest_level(), ""); va_start(ap, fmt); test_vprintf_stderr(fmt, ap); test_vprintf_stderr(fmt, ap); va_end(ap); test_printf_stderr("\n"); test_printf_stderr("\n"); } } test_flush_stderr(); test_flush_stderr(); Loading