summaryrefslogtreecommitdiff
path: root/tests/test-ssfmalloc.c
Commit message (Collapse)AuthorAgeFilesLines
* maint: run 'make update-copyright'Simon Josefsson2023-01-011-1/+1
|
* license: fix GPLv3 texts to use a comma instead of semicolon.Bernhard Voelker2022-01-051-1/+1
| | | | | | | | | See: https://www.gnu.org/licenses/gpl-3.0.html#howto Run: $ git grep -l 'Foundation; either version 3' \ | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/' * All files using GPLv3: Adjust via the above command.
* maint: run 'make update-copyright'Paul Eggert2022-01-011-1/+1
|
* ssfmalloc: Fix includes.Bruno Haible2021-01-041-0/+1
| | | | | * lib/ssfmalloc.h: Include <strings.h>, for ffs(). * tests/test-ssfmalloc.c: Include <string.h>, for memset().
* maint: run 'make update-copyright'Paul Eggert2020-12-311-1/+1
|
* ssfmalloc tests: Port to macOS 11.Bruno Haible2020-11-271-3/+3
| | | | * tests/test-ssfmalloc.c (PAGESIZE_MAX): Set to 16384, not 8192.
* ssfmalloc tests: Portability to Linux/PowerPC and Linux/SPARC.Bruno Haible2020-11-021-3/+5
| | | | | * tests/test-ssfmalloc.c: Include <limits.h>. (PAGESIZE_MAX): Set to 65536 on Linux/PowerPC.
* ssfmalloc tests: Small tweaks.Bruno Haible2020-10-251-1/+24
| | | | | | | * tests/test-ssfmalloc.c: Add comments. (alloc_pages): Don't require PROT_EXEC bits. (block_sizes): Add more small sizes, for better coverage of ssfmalloc-bitmap.h.
* ssfmalloc: Portability to Cygwin.Bruno Haible2020-10-251-0/+12
| | | | | | | * lib/ssfmalloc.h: Add parameter PAGESIZE_MAX. (pg_offset_t): Define depending on PAGESIZE_MAX. * tests/test-ssfmalloc.c: Undefine PAGESIZE. (PAGESIZE_MAX): New macro.
* ssfmalloc: Add tests.Bruno Haible2020-10-191-0/+320
* tests/test-ssfmalloc.c: New file. * modules/ssfmalloc-tests: New file.