summaryrefslogtreecommitdiff
path: root/test/malloc/malloc.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-03-17 02:43:51 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-03-17 02:43:51 +0000
commit18811a88f74a8a0d2d54e275cd632b47817458a1 (patch)
tree266c2f82c8e6b2bee3fb1080bd503b374605c42f /test/malloc/malloc.c
parentdb8fa9bb9aee56bf3bfd83a5825a6b9051d9ac0d (diff)
Fix tests to work if MALLOC_GLIBC_COMPAT is enabled.
Diffstat (limited to 'test/malloc/malloc.c')
-rw-r--r--test/malloc/malloc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/malloc/malloc.c b/test/malloc/malloc.c
index d63856845..b35e329c0 100644
--- a/test/malloc/malloc.c
+++ b/test/malloc/malloc.c
@@ -70,7 +70,11 @@ int test2(void)
ptr = malloc(100);
ptr = realloc(ptr, 0);
+#ifdef __MALLOC_GLIBC_COMPAT__
+ if (!ptr) {
+#else
if (ptr) {
+#endif
printf("realloc(,0) failed\n");
++ret;
free(ptr);