mimalloc/test
2022-11-22 19:03:26 -08:00
..
CMakeLists.txt merge from dev-track 2022-10-30 14:31:21 -07:00
main-override-static.c merge from dev with the destroy_on_exit option 2022-11-21 10:03:52 -08:00
main-override.c introduces netbsd's reallocarr overriding. 2021-12-01 22:43:13 +00:00
main-override.cpp merge segment_init refactoring from dev 2022-11-22 19:03:26 -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 fix tests 2022-10-30 14:07:41 -07:00
test-api.c merge from dev 2022-11-07 16:48:00 -08:00
test-stress.c Merge branch 'dev' into dev-slice 2022-04-19 18:43:32 -07:00
test-wrong.c update readme 2022-10-30 14:52:26 -07:00
testhelper.h fix test macros 2022-04-19 10:49:39 -07: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.