diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-15 05:30:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-15 05:30:52 +0000 |
commit | 909d563a32cd935b02c1d8f8857177e246929874 (patch) | |
tree | e6732b7e1f14824dde901759dce9e1a6b8ba82aa /test/malloc/tst-valloc.c | |
parent | 85a3c4880f67ad5afeb2a77c43db5b161a16854f (diff) |
import tests from glibc
Diffstat (limited to 'test/malloc/tst-valloc.c')
-rw-r--r-- | test/malloc/tst-valloc.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/malloc/tst-valloc.c b/test/malloc/tst-valloc.c new file mode 100644 index 000000000..643a0dda4 --- /dev/null +++ b/test/malloc/tst-valloc.c @@ -0,0 +1,23 @@ +/* Test case by Stephen Tweedie <sct@redhat.com>. */ +#include <unistd.h> +#include <stdio.h> +#include <stdlib.h> + +int +main (void) +{ + char *p; + int pagesize = getpagesize (); + int i; + + p = valloc (pagesize); + i = (long int) p; + + if ((i & (pagesize-1)) != 0) + { + fprintf (stderr, "Alignment problem: valloc returns %p\n", p); + exit (1); + } + + return 0; +} |