diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2015-01-28 21:22:53 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2015-01-28 21:22:53 +0000 |
| commit | 949389c395edffc54f3551cbb595065a6f4e6a78 (patch) | |
| tree | 98d3a7954200b180b9a0b8516309184e056a5598 /libcxx/test/std/containers/sequences/vector/vector.cons | |
| parent | 7f3639fb194c132a7474132489973aeb27584a7c (diff) | |
| download | bcm5719-llvm-949389c395edffc54f3551cbb595065a6f4e6a78.tar.gz bcm5719-llvm-949389c395edffc54f3551cbb595065a6f4e6a78.zip | |
We had two identical files named 'MoveOnly.h' in the test suite. Move one to support/, remove the other, and update all the tests that included them. No functionality change.
llvm-svn: 227370
Diffstat (limited to 'libcxx/test/std/containers/sequences/vector/vector.cons')
7 files changed, 7 insertions, 7 deletions
diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/assign_move.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/assign_move.pass.cpp index d87ac8636b0..8c8b0a04715 100644 --- a/libcxx/test/std/containers/sequences/vector/vector.cons/assign_move.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.cons/assign_move.pass.cpp @@ -13,7 +13,7 @@ #include <vector> #include <cassert> -#include "../../../MoveOnly.h" +#include "MoveOnly.h" #include "test_allocator.h" #include "min_allocator.h" #include "asan_testing.h" diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/default_noexcept.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/default_noexcept.pass.cpp index 3fc33b68d39..471c1d407ec 100644 --- a/libcxx/test/std/containers/sequences/vector/vector.cons/default_noexcept.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.cons/default_noexcept.pass.cpp @@ -17,7 +17,7 @@ #include <vector> #include <cassert> -#include "../../../MoveOnly.h" +#include "MoveOnly.h" #include "test_allocator.h" template <class T> diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/dtor_noexcept.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/dtor_noexcept.pass.cpp index 0d73e9ef4d4..0e2cae9ee93 100644 --- a/libcxx/test/std/containers/sequences/vector/vector.cons/dtor_noexcept.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.cons/dtor_noexcept.pass.cpp @@ -14,7 +14,7 @@ #include <vector> #include <cassert> -#include "../../../MoveOnly.h" +#include "MoveOnly.h" #include "test_allocator.h" #if __has_feature(cxx_noexcept) diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/move.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/move.pass.cpp index bb61d54948b..fb419d825d2 100644 --- a/libcxx/test/std/containers/sequences/vector/vector.cons/move.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.cons/move.pass.cpp @@ -13,7 +13,7 @@ #include <vector> #include <cassert> -#include "../../../MoveOnly.h" +#include "MoveOnly.h" #include "test_allocator.h" #include "min_allocator.h" #include "asan_testing.h" diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/move_alloc.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/move_alloc.pass.cpp index 1923e68f75e..aef96917cb3 100644 --- a/libcxx/test/std/containers/sequences/vector/vector.cons/move_alloc.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.cons/move_alloc.pass.cpp @@ -13,7 +13,7 @@ #include <vector> #include <cassert> -#include "../../../MoveOnly.h" +#include "MoveOnly.h" #include "test_allocator.h" #include "min_allocator.h" #include "asan_testing.h" diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/move_assign_noexcept.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/move_assign_noexcept.pass.cpp index 158370f4e1a..1c4a4f7c928 100644 --- a/libcxx/test/std/containers/sequences/vector/vector.cons/move_assign_noexcept.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.cons/move_assign_noexcept.pass.cpp @@ -19,7 +19,7 @@ #include <vector> #include <cassert> -#include "../../../MoveOnly.h" +#include "MoveOnly.h" #include "test_allocator.h" template <class T> diff --git a/libcxx/test/std/containers/sequences/vector/vector.cons/move_noexcept.pass.cpp b/libcxx/test/std/containers/sequences/vector/vector.cons/move_noexcept.pass.cpp index a2e36ccdf08..46cad9925d0 100644 --- a/libcxx/test/std/containers/sequences/vector/vector.cons/move_noexcept.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/vector.cons/move_noexcept.pass.cpp @@ -17,7 +17,7 @@ #include <vector> #include <cassert> -#include "../../../MoveOnly.h" +#include "MoveOnly.h" #include "test_allocator.h" template <class T> |

