summaryrefslogtreecommitdiffstats
path: root/test/unit/quarantine.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove quarantine support.Jason Evans2016-05-131-108/+0
|
* 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-3/+3
| | | | | | Fix growing large reallocation to junk fill new space. Fix huge deallocation to junk fill when munmap is disabled.
* Add quarantine unit tests.Jason Evans2013-12-171-0/+108
Verify that freed regions are quarantined, and that redzone corruption is detected. Introduce a testing idiom for intercepting/replacing internal functions. In this case the replaced function is ordinarily a static function, but the idiom should work similarly for library-private functions.