summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-server.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-05-09 04:15:56 +0000
committerHavoc Pennington <hp@redhat.com>2003-05-09 04:15:56 +0000
commit27b694f6e109c78c633ddb8d96f524e46e536f4e (patch)
tree43221b8d3bf80b347242f8904256152d6ccc0434 /dbus/dbus-server.c
parente2a1ff66c3374a4f60536e83a19b343e3700125f (diff)
2003-05-08 Havoc Pennington <hp@pobox.com>
* dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov data from getting written, and there wasn't a good reason to use _exit really. * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count dbus_verbose lines in test coverage (main): add list of functions sorted by # of untested blocks to the coverage report * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage * dbus/dbus-message-handler.c (_dbus_message_handler_test): extend test coverage * test/data/auth/cancel.auth-script: test canceling an authentication * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they aren't used. in CVS history if we end up needing them.
Diffstat (limited to 'dbus/dbus-server.c')
-rw-r--r--dbus/dbus-server.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/dbus/dbus-server.c b/dbus/dbus-server.c
index 72a60d04..e62c0284 100644
--- a/dbus/dbus-server.c
+++ b/dbus/dbus-server.c
@@ -24,7 +24,6 @@
#include "dbus-server.h"
#include "dbus-server-unix.h"
#ifdef DBUS_BUILD_TESTS
-#include "dbus-server-debug.h"
#include "dbus-server-debug-pipe.h"
#endif
#include "dbus-address.h"
@@ -389,19 +388,6 @@ dbus_server_listen (const char *address,
break;
}
#ifdef DBUS_BUILD_TESTS
- else if (strcmp (method, "debug") == 0)
- {
- const char *name = dbus_address_entry_get_value (entries[i], "name");
-
- if (name == NULL)
- {
- address_problem_type = "debug";
- address_problem_field = "name";
- goto bad_address;
- }
-
- server = _dbus_server_debug_new (name, error);
- }
else if (strcmp (method, "debug-pipe") == 0)
{
const char *name = dbus_address_entry_get_value (entries[i], "name");