From 643071fc77255a61af68d3fefd65ca1d925644e4 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 7 Nov 2017 16:21:38 +0100 Subject: [PATCH] Add more new lines around GTK errors in the test suite Try to make things a bit more readable. --- tests/test.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test.cpp b/tests/test.cpp index ba853d53ea..5c01d4875a 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -416,10 +416,12 @@ wxTestGLogHandler(const gchar* domain, const gchar* message, gpointer data) { - fprintf(stderr, "** GTK log message while running %s(): ", + fprintf(stderr, "\n*** GTK log message while running %s(): ", wxGetCurrentTestName().c_str()); g_log_default_handler(domain, level, message, data); + + fprintf(stderr, "\n"); } #endif // __WXGTK__