diff options
author | fanquake <fanquake@gmail.com> | 2021-05-26 19:47:47 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-05-28 19:14:07 +0800 |
commit | 883a5c7d021fe29539d417796a5b07e265f1c696 (patch) | |
tree | 4f91e1ba1c2ab8c193b602b48f9e42c6acf31ed8 /src/test | |
parent | 8115c2ad7dc87cc37662421875b728ffc29aaffd (diff) |
test: remove BasicTestingSetup from allocator unit tests
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/allocator_tests.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/test/allocator_tests.cpp b/src/test/allocator_tests.cpp index b523173a45..3779e7b964 100644 --- a/src/test/allocator_tests.cpp +++ b/src/test/allocator_tests.cpp @@ -2,15 +2,18 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. +#include <support/lockedpool.h> #include <util/system.h> -#include <test/util/setup_common.h> - +#include <limits> #include <memory> +#include <stdexcept> +#include <utility> +#include <vector> #include <boost/test/unit_test.hpp> -BOOST_FIXTURE_TEST_SUITE(allocator_tests, BasicTestingSetup) +BOOST_AUTO_TEST_SUITE(allocator_tests) BOOST_AUTO_TEST_CASE(arena_tests) { |