diff options
author | Havoc Pennington <hp@redhat.com> | 2003-05-09 04:15:56 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-05-09 04:15:56 +0000 |
commit | 27b694f6e109c78c633ddb8d96f524e46e536f4e (patch) | |
tree | 43221b8d3bf80b347242f8904256152d6ccc0434 /dbus/dbus-memory.c | |
parent | e2a1ff66c3374a4f60536e83a19b343e3700125f (diff) | |
download | dbus-27b694f6e109c78c633ddb8d96f524e46e536f4e.tar.gz |
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-memory.c')
-rw-r--r-- | dbus/dbus-memory.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbus/dbus-memory.c b/dbus/dbus-memory.c index dce1dded..02bc1a49 100644 --- a/dbus/dbus-memory.c +++ b/dbus/dbus-memory.c @@ -442,7 +442,7 @@ dbus_malloc (size_t bytes) if (bytes == 0) /* some system mallocs handle this, some don't */ return NULL; -#if DBUS_BUILD_TESTS +#ifdef DBUS_BUILD_TESTS else if (fail_size != 0 && bytes > fail_size) return NULL; else if (guards) @@ -493,7 +493,7 @@ dbus_malloc0 (size_t bytes) if (bytes == 0) return NULL; -#if DBUS_BUILD_TESTS +#ifdef DBUS_BUILD_TESTS else if (fail_size != 0 && bytes > fail_size) return NULL; else if (guards) @@ -548,7 +548,7 @@ dbus_realloc (void *memory, dbus_free (memory); return NULL; } -#if DBUS_BUILD_TESTS +#ifdef DBUS_BUILD_TESTS else if (fail_size != 0 && bytes > fail_size) return NULL; else if (guards) |