Merge branch 'test-dbus-posix_spawn' into 'master'

gtestdbus: Use posix_spawn() to spawn dbus-daemon

See merge request GNOME/glib!1388
This commit is contained in:
Simon McVittie 2020-02-26 13:57:47 +00:00
commit 70c5fd53e9

View File

@ -604,11 +604,12 @@ start_daemon (GTestDBus *self)
g_spawn_async_with_pipes (NULL,
(gchar **) argv,
NULL,
#ifdef G_OS_WIN32
/* We Need this to get the pid returned on win32 */
G_SPAWN_DO_NOT_REAP_CHILD |
#endif
G_SPAWN_SEARCH_PATH,
G_SPAWN_SEARCH_PATH |
/* dbus-daemon will not abuse our descriptors, and
* passing this means we can use posix_spawn() for speed */
G_SPAWN_LEAVE_DESCRIPTORS_OPEN,
NULL,
NULL,
&self->priv->bus_pid,