summaryrefslogtreecommitdiff
path: root/bus/dispatch.c
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2010-04-29 16:21:05 +0200
committerRalf Habacker <ralf.habacker@freenet.de>2010-05-03 10:55:46 +0200
commit755fc64ea480adfded1c961e1832e43e1587d680 (patch)
tree19aea1280306ea4c8f92fd275994b791314a2654 /bus/dispatch.c
parent152fa9c7f0e2a60cc9802bad4c8c3ddbbc185daa (diff)
downloaddbus-755fc64ea480adfded1c961e1832e43e1587d680.tar.gz
Disabled launch helper activation tests on windows.
Launch helper application isn't supported on windows yet.
Diffstat (limited to 'bus/dispatch.c')
-rw-r--r--bus/dispatch.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/bus/dispatch.c b/bus/dispatch.c
index d42a9e3f..cd3f2a2a 100644
--- a/bus/dispatch.c
+++ b/bus/dispatch.c
@@ -4698,6 +4698,9 @@ bus_dispatch_test (const DBusString *test_data_dir)
"valid-config-files/debug-allow-all.conf", FALSE))
return FALSE;
+#ifdef DBUS_WIN
+ _dbus_warn("Info: Launch helper activation tests skipped because launch-helper is not supported yet\n");
+#else
/* run launch-helper activation tests */
_dbus_verbose ("Launch helper activation tests\n");
if (!bus_dispatch_test_conf (test_data_dir,
@@ -4708,6 +4711,7 @@ bus_dispatch_test (const DBusString *test_data_dir)
if (!bus_dispatch_test_conf_fail (test_data_dir,
"valid-config-files-system/debug-allow-all-fail.conf"))
return FALSE;
+#endif
return TRUE;
}