Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | In fuzzer remove debug print and check return value of posix_memalign | Jack Lloyd | 2019-02-21 | 1 | -2/+2 |
| | |||||
* | Allocate aligned pages in mem pool fuzzer | Jack Lloyd | 2019-01-13 | 1 | -11/+68 |
| | | | | | | | Otherwise the alignment tests can fail. OSS-Fuzz 12412 And also free the pages on exit otherwise OSS-Fuzz detects it as a leak. OSS-Fuzz 12413 | ||||
* | Split up allocations into pages | Jack Lloyd | 2019-01-05 | 1 | -3/+6 |
| | |||||
* | Update fuzzer for new Memory_Pool behavior and constructor | Jack Lloyd | 2019-01-04 | 1 | -7/+26 |
| | |||||
* | Fix Memory_Pool fuzzer [ci skip] | Jack Lloyd | 2018-12-29 | 1 | -1/+1 |
| | |||||
* | Add a fuzzer for Memory_Pool | Jack Lloyd | 2018-12-29 | 1 | -0/+114 |
Basically, test that it works. Accepts a sequence of alloc+free operations and verify that each pointer returned does not overlap with any other outstanding allocation, that the memory returned is zeroed, and that alignment is respected. Intended for testing #1800 but no reason not to land this first. |