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/containers/associative | |
| 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/containers/associative')
10 files changed, 10 insertions, 10 deletions
diff --git a/libcxx/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp b/libcxx/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp index 6f26dfe3617..307e3e42f39 100644 --- a/libcxx/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp +++ b/libcxx/test/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp @@ -17,7 +17,7 @@ #include <map> #include <cassert> -#include "../../../../iterators.h" +#include "test_iterators.h" int main() { diff --git a/libcxx/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp b/libcxx/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp index 071c088886a..fcd4cee8f9b 100644 --- a/libcxx/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp +++ b/libcxx/test/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp @@ -17,7 +17,7 @@ #include <map> #include <cassert> -#include "../../../../iterators.h" +#include "test_iterators.h" int main() { diff --git a/libcxx/test/containers/associative/multiset/insert_iter_iter.pass.cpp b/libcxx/test/containers/associative/multiset/insert_iter_iter.pass.cpp index 5a09b087301..231e0c57a6e 100644 --- a/libcxx/test/containers/associative/multiset/insert_iter_iter.pass.cpp +++ b/libcxx/test/containers/associative/multiset/insert_iter_iter.pass.cpp @@ -17,7 +17,7 @@ #include <set> #include <cassert> -#include "../../../iterators.h" +#include "test_iterators.h" int main() { diff --git a/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp b/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp index 34d22267a9b..d8a3c145370 100644 --- a/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp +++ b/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp @@ -17,7 +17,7 @@ #include <set> #include <cassert> -#include "../../../../iterators.h" +#include "test_iterators.h" int main() { diff --git a/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp b/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp index 5f32267fb6b..a83e2ae581d 100644 --- a/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp +++ b/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp @@ -18,7 +18,7 @@ #include <set> #include <cassert> -#include "../../../../iterators.h" +#include "test_iterators.h" #include "../../../test_compare.h" #include "../../../test_allocator.h" diff --git a/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp b/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp index 3c2f6e3ed86..0bbaaf12eab 100644 --- a/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp +++ b/libcxx/test/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp @@ -17,7 +17,7 @@ #include <set> #include <cassert> -#include "../../../../iterators.h" +#include "test_iterators.h" #include "../../../test_compare.h" int main() diff --git a/libcxx/test/containers/associative/set/insert_iter_iter.pass.cpp b/libcxx/test/containers/associative/set/insert_iter_iter.pass.cpp index a22f5f834a8..3bc3a61544d 100644 --- a/libcxx/test/containers/associative/set/insert_iter_iter.pass.cpp +++ b/libcxx/test/containers/associative/set/insert_iter_iter.pass.cpp @@ -17,7 +17,7 @@ #include <set> #include <cassert> -#include "../../../iterators.h" +#include "test_iterators.h" int main() { diff --git a/libcxx/test/containers/associative/set/set.cons/iter_iter.pass.cpp b/libcxx/test/containers/associative/set/set.cons/iter_iter.pass.cpp index e1030c552b7..ff068503e5b 100644 --- a/libcxx/test/containers/associative/set/set.cons/iter_iter.pass.cpp +++ b/libcxx/test/containers/associative/set/set.cons/iter_iter.pass.cpp @@ -17,7 +17,7 @@ #include <set> #include <cassert> -#include "../../../../iterators.h" +#include "test_iterators.h" int main() { diff --git a/libcxx/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp b/libcxx/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp index 6986db5460a..9b4992bdb09 100644 --- a/libcxx/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp +++ b/libcxx/test/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp @@ -18,7 +18,7 @@ #include <set> #include <cassert> -#include "../../../../iterators.h" +#include "test_iterators.h" #include "../../../test_compare.h" #include "../../../test_allocator.h" diff --git a/libcxx/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp b/libcxx/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp index ee07bb2ca37..18bc0839003 100644 --- a/libcxx/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp +++ b/libcxx/test/containers/associative/set/set.cons/iter_iter_comp.pass.cpp @@ -17,7 +17,7 @@ #include <set> #include <cassert> -#include "../../../../iterators.h" +#include "test_iterators.h" #include "../../../test_compare.h" int main() |

