From fc6389aa6a03de5c88ea89a75f0992e65f7c4dc8 Mon Sep 17 00:00:00 2001 From: "\"Steven J. Hill\"" Date: Fri, 17 Mar 2006 03:00:05 +0000 Subject: Fix 'realloc' and revert previous changes to tests. malloc tests all pass regardless of the setting of MALLOC_GLIBC_COMPAT. --- test/malloc/tst-malloc.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'test/malloc/tst-malloc.c') diff --git a/test/malloc/tst-malloc.c b/test/malloc/tst-malloc.c index 95d8a6c50..468e1d4ba 100644 --- a/test/malloc/tst-malloc.c +++ b/test/malloc/tst-malloc.c @@ -54,16 +54,9 @@ 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) @@ -73,16 +66,8 @@ 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; } -- cgit v1.2.3