mimalloc/test
2025-03-21 19:43:26 -07:00
..
CMakeLists.txt merge from dev 2025-01-10 09:50:30 -08:00
main-override-dep.cpp add test for mimalloc override on Windows (issue #981) 2025-01-06 12:08:15 -08:00
main-override-dep.h add test for mimalloc override on Windows (issue #981) 2025-01-06 12:08:15 -08:00
main-override-static.c merge from dev 2025-02-11 16:30:03 -08:00
main-override.c introduces netbsd's reallocarr overriding. 2021-12-01 22:43:13 +00:00
main-override.cpp merge from dev 2025-01-10 09:50:30 -08:00
main.c remove lock code from atomics (as it is unused) 2019-06-24 17:54:41 -07:00
readme.md update documentation 2019-11-21 16:09:34 -08:00
test-api-fill.c rename mi_debug_guarded_ to mi_guarded_ 2024-11-16 22:42:32 -08:00
test-api.c reduce test sizes for 32-bit 2025-03-21 17:22:36 -07:00
test-stress.c merge new statistics from dev 2025-03-02 15:52:52 -08:00
test-wrong.c add documentation for tracking tools; rename with prefix MI_TRACK_tool 2023-03-06 09:02:38 -08:00
testhelper.h Fix whitespace 2022-12-03 00:24:20 +01:00

Testing allocators is difficult as bugs may only surface after particular allocation patterns. The main approach to testing mimalloc is therefore to have extensive internal invariant checking (see page_is_valid in page.c for example), which is enabled in debug mode with -DMI_DEBUG_FULL=ON. The main testing strategy is then to run mimalloc-bench using full invariant checking to catch any potential problems over a wide range of intensive allocation benchmarks and programs.

However, this does not test well for the entire API surface and this is tested with test-api.c when using make test (from out/debug etc). (This is not complete yet, please add to it.)

The main.c and main-override.c are there to test if building and overriding from a local install works and therefore these build a separate test/CMakeLists.txt.