diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-12-13 10:44:37 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-12-13 10:44:37 -0600 |
commit | bb0c9077bbdf00adf7b737a84730959250d91200 (patch) | |
tree | bc9ddd03b0e550816502d9a308e9b97117e82cd8 /tests | |
parent | 77608001413236f5decbfabea3392137127bd1c1 (diff) | |
download | ayatana-indicator-datetime-bb0c9077bbdf00adf7b737a84730959250d91200.tar.gz ayatana-indicator-datetime-bb0c9077bbdf00adf7b737a84730959250d91200.tar.bz2 ayatana-indicator-datetime-bb0c9077bbdf00adf7b737a84730959250d91200.zip |
let's see what g_warning jenkins found.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/glib-fixture.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/glib-fixture.h b/tests/glib-fixture.h index 4128033..c6ecc68 100644 --- a/tests/glib-fixture.h +++ b/tests/glib-fixture.h @@ -44,11 +44,12 @@ class GlibFixture : public ::testing::Test private: - static void default_log_handler (const gchar * log_domain G_GNUC_UNUSED, + static void default_log_handler (const gchar * log_domain, GLogLevelFlags log_level, - const gchar * message G_GNUC_UNUSED, + const gchar * message, gpointer self) { + g_print ("%s - %d - %s", log_domain, (int)log_level, message); static_cast<GlibFixture*>(self)->logCounts[log_level]++; } |