diff options
Diffstat (limited to 'bus/test-main.c')
| -rw-r--r-- | bus/test-main.c | 11 | 
1 files changed, 8 insertions, 3 deletions
| diff --git a/bus/test-main.c b/bus/test-main.c index b4e84884..1626f2d7 100644 --- a/bus/test-main.c +++ b/bus/test-main.c @@ -76,7 +76,7 @@ main (int argc, char **argv)    if (!_dbus_threads_init_debug ())      die ("initializing debug threads");  #endif - +     printf ("%s: Running expire list test\n", argv[0]);    if (!bus_expire_list_test (&test_data_dir))      die ("expire list"); @@ -106,12 +106,17 @@ main (int argc, char **argv)      die ("sha1");    check_memleaks (argv[0]); -      printf ("%s: Running message dispatch test\n", argv[0]); -  if (!bus_dispatch_test (&test_data_dir)) +  if (!bus_dispatch_test (&test_data_dir))       die ("dispatch");    check_memleaks (argv[0]); + +  printf ("%s: Running service files reloading test\n", argv[0]); +  if (!bus_activation_service_reload_test (&test_data_dir)) +    die ("service reload"); + +  check_memleaks (argv[0]);    printf ("%s: Success\n", argv[0]); | 
