From 77eac31aee89346d1399193be6199b9b16fb77af Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Fri, 11 Apr 2003 04:52:29 +0000 Subject: 2003-04-11 Havoc Pennington * test/decode-gcov.c: add "below average functions" to the coverage report, and change how some of the code works. * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's not in the coverage stats. * test/test-service.c (main): use _dbus_verbose not fprintf in a couple places so running the test suite doesn't result in megaspam. --- test/test-service.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/test-service.c') diff --git a/test/test-service.c b/test/test-service.c index ec2e8dc7..9784d3b7 100644 --- a/test/test-service.c +++ b/test/test-service.c @@ -110,8 +110,8 @@ main (int argc, connection = dbus_bus_get (DBUS_BUS_ACTIVATION, &error); if (connection == NULL) { - fprintf (stderr, "*** Failed to open connection to activating message bus: %s\n", - error.message); + _dbus_verbose ("*** Failed to open connection to activating message bus: %s\n", + error.message); dbus_error_free (&error); return 1; } @@ -135,8 +135,8 @@ main (int argc, 0, &error); if (dbus_error_is_set (&error)) { - fprintf (stderr, "*** Failed to acquire service: %s\n", - error.message); + _dbus_verbose ("*** Failed to acquire service: %s\n", + error.message); dbus_error_free (&error); exit (1); } -- cgit