aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-10-26 09:14:11 +0200
committerCharles Kerr <charles.kerr@canonical.com>2012-10-26 09:14:11 +0200
commita8d3382188e2fad083a287c9656052273f91e845 (patch)
tree2a5d74aca1b6ee6001e5f03ab6437f98b3a85ec6 /tests
parent92b48e8afa58cab0612fdc49546ea66666e73ab5 (diff)
downloadayatana-indicator-power-a8d3382188e2fad083a287c9656052273f91e845.tar.gz
ayatana-indicator-power-a8d3382188e2fad083a287c9656052273f91e845.tar.bz2
ayatana-indicator-power-a8d3382188e2fad083a287c9656052273f91e845.zip
silence the known/nonbug gtk and glib warnings
Diffstat (limited to 'tests')
-rw-r--r--tests/test-indicator.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test-indicator.cc b/tests/test-indicator.cc
index 5480774..824a5ac 100644
--- a/tests/test-indicator.cc
+++ b/tests/test-indicator.cc
@@ -29,6 +29,16 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
namespace
{
+ void quiet_log_func (const gchar *log_domain,
+ GLogLevelFlags log_level,
+ const gchar *message,
+ gpointer user_data)
+ {
+ // instantiating an indicator w/o a window causes lots
+ // of glib/gtk warnings... silence them so that they don't
+ // obscure any other warnings generated by the tests.
+ }
+
void ensure_glib_initialized ()
{
static bool initialized = false;
@@ -37,6 +47,8 @@ namespace
{
initialized = true;
g_type_init();
+ g_log_set_handler ("Gtk", (GLogLevelFlags)(G_LOG_LEVEL_CRITICAL|G_LOG_LEVEL_WARNING), quiet_log_func, NULL);
+ g_log_set_handler ("GLib-GObject", (GLogLevelFlags)(G_LOG_LEVEL_CRITICAL|G_LOG_LEVEL_WARNING), quiet_log_func, NULL);
}
}
}