diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-12-09 09:51:09 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-12-09 09:51:09 +0000 |
commit | 43a7f2c53b016ae7bd75215353c57dfffcbb72e6 (patch) | |
tree | 3d8473a6fce5b77a340418e7ca50224301832f3d /libcxx/test/std/experimental/memory | |
parent | 1b1b02d25b399c798ef8cd46ec06fb984c8c8df5 (diff) | |
download | bcm5719-llvm-43a7f2c53b016ae7bd75215353c57dfffcbb72e6.tar.gz bcm5719-llvm-43a7f2c53b016ae7bd75215353c57dfffcbb72e6.zip |
Refactor uses_allocator test types for upcoming fixes
llvm-svn: 289197
Diffstat (limited to 'libcxx/test/std/experimental/memory')
5 files changed, 23 insertions, 0 deletions
diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_const_lvalue_pair.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_const_lvalue_pair.pass.cpp index 50a71eeca82..acc42d39f60 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_const_lvalue_pair.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_const_lvalue_pair.pass.cpp @@ -23,7 +23,12 @@ #include <tuple> #include <cassert> #include <cstdlib> + +#include "test_macros.h" +#include "test_memory_resource.hpp" #include "uses_alloc_types.hpp" +#include "controlled_allocators.hpp" +#include "test_allocator.h" namespace ex = std::experimental::pmr; diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_rvalue.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_rvalue.pass.cpp index b6adb558b1e..05cf82cfbd2 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_rvalue.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_rvalue.pass.cpp @@ -23,7 +23,12 @@ #include <tuple> #include <cassert> #include <cstdlib> + +#include "test_macros.h" +#include "test_memory_resource.hpp" #include "uses_alloc_types.hpp" +#include "controlled_allocators.hpp" +#include "test_allocator.h" namespace ex = std::experimental::pmr; diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_values.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_values.pass.cpp index a913742a854..1a76072661d 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_values.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_values.pass.cpp @@ -23,7 +23,12 @@ #include <tuple> #include <cassert> #include <cstdlib> + +#include "test_macros.h" +#include "test_memory_resource.hpp" #include "uses_alloc_types.hpp" +#include "controlled_allocators.hpp" +#include "test_allocator.h" namespace ex = std::experimental::pmr; diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair.pass.cpp index d0d76503da5..8f78521995d 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair.pass.cpp @@ -24,7 +24,11 @@ #include <tuple> #include <cassert> #include <cstdlib> + +#include "test_macros.h" +#include "test_memory_resource.hpp" #include "uses_alloc_types.hpp" +#include "controlled_allocators.hpp" #include "test_allocator.h" namespace ex = std::experimental::pmr; diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_types.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_types.pass.cpp index 73e4f0e101a..a02dcf33696 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_types.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_types.pass.cpp @@ -21,7 +21,11 @@ #include <type_traits> #include <cassert> #include <cstdlib> + +#include "test_macros.h" +#include "test_memory_resource.hpp" #include "uses_alloc_types.hpp" +#include "controlled_allocators.hpp" #include "test_allocator.h" namespace ex = std::experimental::pmr; |