diff options
author | Marshall Clow <mclow@qualcomm.com> | 2013-01-05 03:21:01 +0000 |
---|---|---|
committer | Marshall Clow <mclow@qualcomm.com> | 2013-01-05 03:21:01 +0000 |
commit | 322270842cce3c74eed498937bf39bb57f89ee4a (patch) | |
tree | aefeb87fb70f51fd05b6153d12ba237dafa9fbf9 /libcxx/test/algorithms/alg.modifying.operations/alg.remove | |
parent | 08116a7df3a542553a845eeae0302904036133ca (diff) | |
download | bcm5719-llvm-322270842cce3c74eed498937bf39bb57f89ee4a.tar.gz bcm5719-llvm-322270842cce3c74eed498937bf39bb57f89ee4a.zip |
Move common header files into a 'support' directory; make 'testit' include -I to that directory; rename 'iterators.h' to 'iterator_test.h'; remove hard-coded paths to include files from more than 350 source files
llvm-svn: 171594
Diffstat (limited to 'libcxx/test/algorithms/alg.modifying.operations/alg.remove')
4 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp index 8ca008fe2e8..80f86568c4d 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp @@ -21,7 +21,7 @@ #include <memory> #endif -#include "../../../iterators.h" +#include "test_iterators.h" template <class Iter> void diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp index 1bb2e63a759..bf5f79cf835 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp @@ -17,7 +17,7 @@ #include <algorithm> #include <cassert> -#include "../../../iterators.h" +#include "test_iterators.h" template <class InIter, class OutIter> void diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp index 7fb1d041bb8..de3f0a74104 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp @@ -19,7 +19,7 @@ #include <functional> #include <cassert> -#include "../../../iterators.h" +#include "test_iterators.h" template <class InIter, class OutIter> void diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp index 7493b87cae2..6da3a677a15 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp @@ -22,7 +22,7 @@ #include <memory> #endif -#include "../../../iterators.h" +#include "test_iterators.h" template <class Iter> void |