diff options
author | Joe Simmons-Talbott <josimmon@redhat.com> | 2024-05-14 14:36:50 +0000 |
---|---|---|
committer | Joe Simmons-Talbott <josimmon@redhat.com> | 2024-05-14 14:36:50 +0000 |
commit | 3395157ff2b0657d70c36169156f67440205c8bf (patch) | |
tree | a8f4c5f02ff31b640f664fb2df3d8cbe2476ef20 /malloc/tst-aligned-alloc-random.c | |
parent | 90a6ca8b28bf34e361e577e526e1b0f4c39a32a5 (diff) | |
download | glibc-3395157ff2b0657d70c36169156f67440205c8bf.tar.gz glibc-3395157ff2b0657d70c36169156f67440205c8bf.tar.xz glibc-3395157ff2b0657d70c36169156f67440205c8bf.zip |
malloc: Improve aligned_alloc and calloc test coverage.
Add a DSO (malloc/tst-aligned_alloc-lib.so) that can be used during testing to interpose malloc with a call that randomly uses either aligned_alloc, __libc_malloc, or __libc_calloc in the place of malloc. Use LD_PRELOAD with the DSO to mirror malloc/tst-malloc.c testing as an example in malloc/tst-malloc-random.c. Add malloc/tst-aligned-alloc-random.c as another example that does a number of malloc calls with randomly sized, but limited to 0xffff, requests. The intention is to be able to utilize existing malloc testing to ensure that similar allocation APIs are also exposed to the same rigors. Reviewed-by: DJ Delorie <dj@redhat.com>
Diffstat (limited to 'malloc/tst-aligned-alloc-random.c')
-rw-r--r-- | malloc/tst-aligned-alloc-random.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/malloc/tst-aligned-alloc-random.c b/malloc/tst-aligned-alloc-random.c new file mode 100644 index 0000000000..f2825ce38f --- /dev/null +++ b/malloc/tst-aligned-alloc-random.c @@ -0,0 +1,43 @@ +/* Test for randomized malloc that calls aligned_alloc + Copyright (C) 2024 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. */ + +#include <stdlib.h> +#include <support/check.h> +#include <time.h> + +static int +do_test (void) +{ + void *p1; + int i; + + srandom (time (NULL)); + + for (i = 0; i < 1024; i++) + { + size_t size = random () & 0xffff; + + p1 = malloc (size); + TEST_VERIFY (p1 != NULL); + } + + return 0; +} + + +#include <support/test-driver.c> |