embeddedartistry / libmemory

Embedded systems memory management library. Implementations for malloc(), free(), and other useful memory management functions
https://embeddedartistry.com
MIT License
216 stars 44 forks source link

Add test for overlapping memory blocks #10

Open phillipjohnston opened 7 years ago

phillipjohnston commented 7 years ago

malloc - add tests that none of the returned blocks overlap.

Non-overlap would mean that each returned address + size does not fall within the bounds of another returned address / size.