tst-malloc.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* Copyright (C) 1999 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1999.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <errno.h>
  17. #include <malloc.h>
  18. #include <stdio.h>
  19. #include <features.h>
  20. static int errors = 0;
  21. static void
  22. merror (const char *msg)
  23. {
  24. ++errors;
  25. printf ("Error: %s\n", msg);
  26. }
  27. int
  28. main (void)
  29. {
  30. void *p;
  31. int save;
  32. errno = 0;
  33. p = malloc (-1);
  34. save = errno;
  35. if (p != NULL)
  36. merror ("malloc (-1) succeeded.");
  37. if (p == NULL && save != ENOMEM)
  38. merror ("errno is not set correctly");
  39. p = malloc (10);
  40. if (p == NULL)
  41. merror ("malloc (10) failed.");
  42. /* realloc (p, 0) == free (p). */
  43. p = realloc (p, 0);
  44. if (p != NULL)
  45. merror ("realloc (p, 0) failed.");
  46. p = malloc (0);
  47. #if !defined(__UCLIBC__) || defined(__MALLOC_GLIBC_COMPAT__)
  48. if (p == NULL)
  49. #else
  50. if (p != NULL)
  51. #endif
  52. merror ("malloc (0) failed.");
  53. p = realloc (p, 0);
  54. if (p != NULL)
  55. merror ("realloc (p, 0) failed.");
  56. return errors != 0;
  57. }