From 3321269a9a2f98ad4ad98821b38ce2059e92fcb6 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Thu, 12 Nov 2015 00:39:09 +0100 Subject: [PATCH] Skip launch helper activation tests on windows silently. The system bus is unsupported there and Windows does not have any concept of setuid binaries, so it can't ever actually work. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=92721 --- bus/dispatch.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bus/dispatch.c b/bus/dispatch.c index 13e2adc..b8b1526 100644 --- a/bus/dispatch.c +++ b/bus/dispatch.c @@ -4962,9 +4962,7 @@ 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 +#ifndef DBUS_WIN /* run launch-helper activation tests */ _dbus_verbose ("Launch helper activation tests\n"); if (!bus_dispatch_test_conf (test_data_dir, -- 1.8.4.5