From: Ralf Habacker Date: Thu, 29 Apr 2010 14:21:05 +0000 (+0200) Subject: Disabled launch helper activation tests on windows. X-Git-Tag: dbus-1.3.1~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=755fc64ea480adfded1c961e1832e43e1587d680;p=platform%2Fupstream%2Fdbus.git Disabled launch helper activation tests on windows. Launch helper application isn't supported on windows yet. --- diff --git a/bus/dispatch.c b/bus/dispatch.c index d42a9e3..cd3f2a2 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; }