GTestDBus: Allow to specify the dbus-daemon binary

The env var G_TEST_DBUS_DAEMON lets you change dbus-daemon to
whatever you want. This is useful to test with gdbus-daemon
This commit is contained in:
Alexander Larsson 2012-04-19 11:01:24 +02:00
parent 0d8b1b14d2
commit 74214e2997

View File

@ -514,6 +514,9 @@ start_daemon (GTestDBus *self)
gsize termpos;
GError *error = NULL;
if (g_getenv ("G_TEST_DBUS_DAEMON") != NULL)
argv[0] = g_getenv ("G_TEST_DBUS_DAEMON");
/* Write config file and set its path in argv */
file = write_config_file (self);
config_path = g_file_get_path (file);