Disable two GDBus tests
authorRyan Lortie <desrt@desrt.ca>
Fri, 16 Sep 2011 15:06:50 +0000 (11:06 -0400)
committerRyan Lortie <desrt@desrt.ca>
Fri, 16 Sep 2011 15:18:26 +0000 (11:18 -0400)
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
gio/tests/gdbus-non-socket.c

index df1bce8..3db3dd2 100644 (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();
 }
index cf8853f..636c853 100644 (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();