From 05ef173466e32d8b3d212803e4a72239913a362d Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Fri, 16 Sep 2011 11:06:50 -0400 Subject: [PATCH] Disable two GDBus tests These tests try to use GMainContext across fork() which now fails a lot more violently than it used to. See https://bugzilla.gnome.org/show_bug.cgi?id=658999 for information. --- gio/tests/gdbus-exit-on-close.c | 3 ++- gio/tests/gdbus-non-socket.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gio/tests/gdbus-exit-on-close.c b/gio/tests/gdbus-exit-on-close.c index df1bce8..3db3dd2 100644 --- a/gio/tests/gdbus-exit-on-close.c +++ b/gio/tests/gdbus-exit-on-close.c @@ -77,6 +77,7 @@ main (int argc, g_unsetenv ("DISPLAY"); g_setenv ("DBUS_SESSION_BUS_ADDRESS", session_bus_get_temporary_address (), TRUE); - g_test_add_func ("/gdbus/exit-on-close", test_exit_on_close); + /* Disabled: see https://bugzilla.gnome.org/show_bug.cgi?id=658999 + * g_test_add_func ("/gdbus/exit-on-close", test_exit_on_close); */ return g_test_run(); } diff --git a/gio/tests/gdbus-non-socket.c b/gio/tests/gdbus-non-socket.c index cf8853f..636c853 100644 --- a/gio/tests/gdbus-non-socket.c +++ b/gio/tests/gdbus-non-socket.c @@ -347,7 +347,8 @@ main (int argc, /* all the tests rely on a shared main loop */ loop = g_main_loop_new (NULL, FALSE); - g_test_add_func ("/gdbus/non-socket", test_non_socket); + /* Disabled: see https://bugzilla.gnome.org/show_bug.cgi?id=658999 + * g_test_add_func ("/gdbus/non-socket", test_non_socket); */ ret = g_test_run(); -- 2.7.4