Description
Travis currently uses ASAN for leak detection.
This tool does identify leaks, but it only tracks the initial allocation of the object from the heap.
This trace information can be inaccurate for objects stored in alloc pools, since it does not account for when objects are returned by to the pool.
By enabling the built-in alloc_pool leak checker as well we'll get more accurate traces that identify the last owner of the leaked object.