From 90ed1d84588a84697051e643175452c50d682ece Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Wed, 26 Mar 2003 03:58:11 +0000 Subject: 2003-03-25 Havoc Pennington * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR * configure.in: add --with-xml option to specify XML library, right now only libxml is supported. * bus/config-loader-libxml.c, config-parser.c: sync some minor nonworking code between home and work, still just stubs --- bus/test-main.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'bus/test-main.c') diff --git a/bus/test-main.c b/bus/test-main.c index 2e0b952e..c7f9f7b7 100644 --- a/bus/test-main.c +++ b/bus/test-main.c @@ -51,11 +51,19 @@ main (int argc, char **argv) dir = ""; _dbus_string_init_const (&test_data_dir, dir); + + printf ("%s: Running config file parser test\n", argv[0]); + if (!bus_config_parser_test (&test_data_dir)) + die ("parser"); + printf ("%s: Running policy test\n", argv[0]); + if (!bus_policy_test (&test_data_dir)) + die ("policy"); + printf ("%s: Running message dispatch test\n", argv[0]); if (!bus_dispatch_test (&test_data_dir)) die ("dispatch"); - + dbus_shutdown (); printf ("%s: checking for memleaks\n", argv[0]); -- cgit