diff options
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 |
commit | 18811a88f74a8a0d2d54e275cd632b47817458a1 (patch) | |
tree | 266c2f82c8e6b2bee3fb1080bd503b374605c42f /test/malloc/tst-malloc.c | |
parent | db8fa9bb9aee56bf3bfd83a5825a6b9051d9ac0d (diff) |
Fix tests to work if MALLOC_GLIBC_COMPAT is enabled.
Diffstat (limited to 'test/malloc/tst-malloc.c')
-rw-r--r-- | test/malloc/tst-malloc.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/malloc/tst-malloc.c b/test/malloc/tst-malloc.c index 468e1d4ba..95d8a6c50 100644 --- a/test/malloc/tst-malloc.c +++ b/test/malloc/tst-malloc.c @@ -54,9 +54,16 @@ main (void) /* realloc (p, 0) == free (p). */ p = realloc (p, 0); +#ifdef __MALLOC_GLIBC_COMPAT__ + if (!p) +#else if (p != NULL) +#endif merror ("realloc (p, 0) failed."); +#ifdef __MALLOC_GLIBC_COMPAT__ + free (p); +#endif p = malloc (0); #if !defined(__UCLIBC__) || defined(__MALLOC_GLIBC_COMPAT__) if (p == NULL) @@ -66,8 +73,16 @@ main (void) merror ("malloc (0) failed."); p = realloc (p, 0); +#ifdef __MALLOC_GLIBC_COMPAT__ + if (!p) +#else if (p != NULL) +#endif merror ("realloc (p, 0) failed."); +#ifdef __MALLOC_GLIBC_COMPAT__ + free (p); +#endif + return errors != 0; } |