diff options
author | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2019-08-23 16:33:43 +0300 |
---|---|---|
committer | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2019-08-27 12:34:09 +0300 |
commit | e787f5f43ae0136003606ad0276d68def3c76437 (patch) | |
tree | db5940f88e1a93be79fd3f83ec459ec332e6e140 | |
parent | 75b1e47f3a875517ff5ab4938025e1a200cb753f (diff) | |
download | qtlocation-mapboxgl-e787f5f43ae0136003606ad0276d68def3c76437.tar.gz |
[test runner] Overload global new/delete
-rw-r--r-- | render-test/main.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/render-test/main.cpp b/render-test/main.cpp index ef9352d21d..46447f5853 100644 --- a/render-test/main.cpp +++ b/render-test/main.cpp @@ -1,3 +1,5 @@ +#include "allocation_index.hpp" + #include <mbgl/util/run_loop.hpp> #include <mbgl/util/io.hpp> @@ -19,6 +21,21 @@ #define ANSI_COLOR_LIGHT_GRAY "\x1b[90m" #define ANSI_COLOR_RESET "\x1b[0m" +void* operator new(std::size_t sz) { + void* ptr = AllocationIndex::allocate(sz); + if (!ptr) throw std::bad_alloc{}; + + return ptr; +} + +void operator delete(void* ptr) noexcept { + AllocationIndex::deallocate(ptr); +} + +void operator delete(void* ptr, size_t) noexcept { + AllocationIndex::deallocate(ptr); +} + namespace { TestPaths makeTestPaths(mbgl::filesystem::path stylePath) { |