summaryrefslogtreecommitdiffstats
path: root/test/test-service.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-04-11 04:52:29 +0000
committerHavoc Pennington <hp@redhat.com>2003-04-11 04:52:29 +0000
commit77eac31aee89346d1399193be6199b9b16fb77af (patch)
tree11b3ca9303814e137b444d12e4ad40196b95c482 /test/test-service.c
parenta03e626728db8a9cbe1dbbfab6f22f5870cb40ae (diff)
2003-04-11 Havoc Pennington <hp@pobox.com>
* 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.
Diffstat (limited to 'test/test-service.c')
-rw-r--r--test/test-service.c8
1 files changed, 4 insertions, 4 deletions
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);
}