From 46ee931314e6a5517f5c6b6b14f759364be119cc Mon Sep 17 00:00:00 2001 From: Pavel Březina Date: Thu, 11 Dec 2014 22:23:32 +0100 Subject: sbus: support multiple interfaces on single path This patch removes the old message handler which is replaced with a new one that supports multiple interfaces registered on single object path. A hash table is used to store registered object paths and their interfaces. When an entry or the table itself is destroyed, registered object path is unregistered through delete callback. It temporarily removes support of Introspect and Properties standard D-Bus interfaces and disables unit tests of those interfaces. The support is brought back by following patches. Resolves: https://fedorahosted.org/sssd/ticket/2339 Reviewed-by: Jakub Hrozek --- src/tests/sbus_codegen_tests.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/tests/sbus_codegen_tests.c') diff --git a/src/tests/sbus_codegen_tests.c b/src/tests/sbus_codegen_tests.c index dccb5e314..07c62c5ef 100644 --- a/src/tests/sbus_codegen_tests.c +++ b/src/tests/sbus_codegen_tests.c @@ -1353,9 +1353,11 @@ TCase *create_handler_tests(void) TCase *tc = tcase_create("handler"); tcase_add_test(tc, test_marshal_basic_types); +#if false tcase_add_test(tc, test_get_basic_types); tcase_add_test(tc, test_getall_basic_types); tcase_add_test(tc, test_get_basic_array_types); +#endif return tc; } -- cgit