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.
This commit is contained in:
Ryan Lortie 2011-09-16 11:06:50 -04:00
parent 0bb01a150f
commit 05ef173466
2 changed files with 4 additions and 2 deletions

View File

@ -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();
}

View File

@ -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();