Update copyright notices with scripts/update-copyrights
[glibc.git] / malloc / tst-valloc.c
blob09eaa0a26d2e188057d54cedab64e9cc0c4c7cbe
1 /* Test for valloc.
2 Copyright (C) 2013-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <stdlib.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include <unistd.h>
25 static int errors = 0;
27 static void
28 merror (const char *msg)
30 ++errors;
31 printf ("Error: %s\n", msg);
34 static int
35 do_test (void)
37 void *p;
38 unsigned long pagesize = getpagesize ();
39 unsigned long ptrval;
40 int save;
42 errno = 0;
44 /* An attempt to allocate a huge value should return NULL and set
45 errno to ENOMEM. */
46 p = valloc (-1);
48 save = errno;
50 if (p != NULL)
51 merror ("valloc (-1) succeeded.");
53 if (p == NULL && save != ENOMEM)
54 merror ("valloc (-1) errno is not set correctly");
56 free (p);
58 errno = 0;
60 /* Test to expose integer overflow in malloc internals from BZ #15856. */
61 p = valloc (-pagesize);
63 save = errno;
65 if (p != NULL)
66 merror ("valloc (-pagesize) succeeded.");
68 if (p == NULL && save != ENOMEM)
69 merror ("valloc (-pagesize) errno is not set correctly");
71 free (p);
73 /* A zero-sized allocation should succeed with glibc, returning a
74 non-NULL value. */
75 p = valloc (0);
77 if (p == NULL)
78 merror ("valloc (0) failed.");
80 free (p);
82 /* Check the alignment of the returned pointer is correct. */
83 p = valloc (32);
85 if (p == NULL)
86 merror ("valloc (32) failed.");
88 ptrval = (unsigned long) p;
90 if ((ptrval & (pagesize - 1)) != 0)
91 merror ("returned pointer is not page aligned.");
93 free (p);
95 return errors != 0;
98 #define TEST_FUNCTION do_test ()
99 #include "../test-skeleton.c"