summaryrefslogtreecommitdiffstats
path: root/test/unit/zero.c
Commit message (Collapse)AuthorAgeFilesLines
* Use MALLOC_CONF rather than malloc_conf for tests.Jason Evans2017-02-231-5/+0
| | | | | | | | | malloc_conf does not reliably work with MSVC, which complains of "inconsistent dll linkage", i.e. its inability to support the application overriding malloc_conf when dynamically linking/loading. Work around this limitation by adding test harness support for per test shell script sourcing, and converting all tests to use MALLOC_CONF instead of malloc_conf.
* Clean up char vs. uint8_t in junk filling code.Jason Evans2016-04-111-7/+9
| | | | Consistently use uint8_t rather than char for junk filling code.
* Rename arena_maxclass to large_maxclass.Jason Evans2015-09-121-2/+2
| | | | | arena_maxclass is no longer an appropriate name, because arenas also manage huge allocations.
* Fix message formatting errors uncovered by p_test_fail() refactoring.Jason Evans2014-03-301-1/+1
|
* Add junk/zero filling unit tests, and fix discovered bugs.Jason Evans2014-01-081-0/+78
Fix growing large reallocation to junk fill new space. Fix huge deallocation to junk fill when munmap is disabled.