diff options
author | Havoc Pennington <hp@redhat.com> | 2003-03-15 02:19:02 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-03-15 02:19:02 +0000 |
commit | 4c95a9782c65f88e2904c44abeb734a1b00f6353 (patch) | |
tree | d81b0c3a3497a031cb642dc5126750a36a6651ff /bus/test-main.c | |
parent | f468907fb09e8198c4cce7e8f2ddeae8b5476b9e (diff) | |
download | dbus-4c95a9782c65f88e2904c44abeb734a1b00f6353.tar.gz |
2003-03-14 Havoc Pennington <hp@redhat.com>
* dbus/dbus-memory.c: add a "detect buffer overwrites on free"
cheesy hack
* dbus/dbus-transport-debug.c: rework this a good bit to be
less complicated. hopefully still works.
* dbus/dbus-server-debug.c (handle_new_client): remove timeout
manually
* glib/dbus-gmain.c (timeout_handler): don't remove timeout
after running it
* dbus/dbus-message.c (dbus_message_copy): rename from
dbus_message_new_from_message, fix it up to copy
all the message fields, add test case
* bus/dispatch.c (bus_dispatch_test): add some more test code,
not quite passing yet
Diffstat (limited to 'bus/test-main.c')
-rw-r--r-- | bus/test-main.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bus/test-main.c b/bus/test-main.c index 503d996d..26e9110d 100644 --- a/bus/test-main.c +++ b/bus/test-main.c @@ -53,10 +53,14 @@ main (int argc, char **argv) if (!bus_dispatch_test (&test_data_dir)) die ("dispatch"); + + printf ("Success\n"); return 0; #else /* DBUS_BUILD_TESTS */ - + + printf ("Not compiled with test support\n"); + return 0; #endif } |