diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 00:14:12 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-21 00:14:12 +0000 |
commit | cc89063bff0f73ec7049a1dcb5d4688ae6806941 (patch) | |
tree | 90c993525f5f8a46618e9b2297fef56de1024383 /libcxx/test/std | |
parent | 56606a4db3e7c6b4a1b3bfd3b2dfc04c81a2247e (diff) | |
download | bcm5719-llvm-cc89063bff0f73ec7049a1dcb5d4688ae6806941.tar.gz bcm5719-llvm-cc89063bff0f73ec7049a1dcb5d4688ae6806941.zip |
libcxx: Rename .hpp files in libcxx/test/support to .h
LLVM uses .h as its extension for header files.
Files renamed using:
for f in libcxx/test/support/*.hpp; do git mv $f ${f%.hpp}.h; done
References to the files updated using:
for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do
a=$(basename $f);
echo $a;
rg -l $a libcxx | xargs sed -i '' "s/$a/${a%.hpp}.h/";
done
HPP include guards updated manually using:
for f in $(git diff master | grep 'rename from' | cut -f 3 -d ' '); do
echo ${f%.hpp}.h ;
done | xargs mvim
Differential Revision: https://reviews.llvm.org/D66104
llvm-svn: 369481
Diffstat (limited to 'libcxx/test/std')
401 files changed, 641 insertions, 641 deletions
diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp index 3b20fbde5ba..2f012d57252 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "user_defined_integral.hpp" +#include "user_defined_integral.h" // #if TEST_STD_VER > 17 // TEST_CONSTEXPR bool test_constexpr() { diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp index 2e181cfd49c..027dedcdc9b 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp @@ -17,7 +17,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "user_defined_integral.hpp" +#include "user_defined_integral.h" // #if TEST_STD_VER > 17 // TEST_CONSTEXPR bool test_constexpr() { diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp index e774c915fa6..77d80838ff6 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "user_defined_integral.hpp" +#include "user_defined_integral.h" #if TEST_STD_VER > 17 TEST_CONSTEXPR bool test_constexpr() { diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp index 4ffdc648f62..82df626065f 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp @@ -24,7 +24,7 @@ #include <cassert> #include "test_iterators.h" -#include "user_defined_integral.hpp" +#include "user_defined_integral.h" struct gen_test { diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp index 6c741490f1f..5622f554078 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp @@ -19,7 +19,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" struct is_odd { TEST_CONSTEXPR bool operator()(const int &i) const { return i & 1; } diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp index 637a91707d3..99f9adfd319 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp @@ -21,7 +21,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" TEST_CONSTEXPR bool equal2 ( int i ) { return i == 2; } diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n.pass.cpp index 3c86127f38b..228bc6b768c 100644 --- a/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n.pass.cpp +++ b/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "user_defined_integral.hpp" +#include "user_defined_integral.h" #if TEST_STD_VER > 17 TEST_CONSTEXPR bool test_constexpr() { diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n_pred.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n_pred.pass.cpp index 13568939099..6a3ab75758d 100644 --- a/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n_pred.pass.cpp +++ b/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n_pred.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "user_defined_integral.hpp" +#include "user_defined_integral.h" #if TEST_STD_VER > 17 TEST_CONSTEXPR bool eq(int a, int b) { return a == b; } diff --git a/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp b/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp index 15edec03a25..13a0d52d6de 100644 --- a/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp +++ b/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp @@ -24,7 +24,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" #if TEST_STD_VER > 17 TEST_CONSTEXPR bool eq(int a, int b) { return a == b; } diff --git a/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/make.heap/make_heap_comp.pass.cpp b/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/make.heap/make_heap_comp.pass.cpp index 23c501cd774..9aa3a226352 100644 --- a/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/make.heap/make_heap_comp.pass.cpp +++ b/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/make.heap/make_heap_comp.pass.cpp @@ -20,7 +20,7 @@ #include <cassert> #include "test_macros.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" #include "test_iterators.h" struct indirect_less diff --git a/libcxx/test/std/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp b/libcxx/test/std/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp index 7ab5c0ca922..11cda44d756 100644 --- a/libcxx/test/std/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp +++ b/libcxx/test/std/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp @@ -56,7 +56,7 @@ struct S { #endif // TEST_STD_VER >= 11 #include "test_iterators.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" std::mt19937 randomness; diff --git a/libcxx/test/std/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp b/libcxx/test/std/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp index 508a4f5ab73..afa7073581e 100644 --- a/libcxx/test/std/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp +++ b/libcxx/test/std/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp @@ -26,7 +26,7 @@ #include "test_macros.h" #include "test_iterators.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" // #if TEST_STD_VER > 17 // TEST_CONSTEXPR bool test_constexpr() { diff --git a/libcxx/test/std/algorithms/alg.sorting/alg.min.max/minmax_init_list_comp.pass.cpp b/libcxx/test/std/algorithms/alg.sorting/alg.min.max/minmax_init_list_comp.pass.cpp index efa0e92fb95..5c919e5cda9 100644 --- a/libcxx/test/std/algorithms/alg.sorting/alg.min.max/minmax_init_list_comp.pass.cpp +++ b/libcxx/test/std/algorithms/alg.sorting/alg.min.max/minmax_init_list_comp.pass.cpp @@ -21,7 +21,7 @@ #include <cassert> #include "test_macros.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" bool all_equal(int, int) { return false; } // everything is equal diff --git a/libcxx/test/std/containers/associative/map/map.access/index_key.pass.cpp b/libcxx/test/std/containers/associative/map/map.access/index_key.pass.cpp index 8df052e0162..eaa8e1d6d38 100644 --- a/libcxx/test/std/containers/associative/map/map.access/index_key.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.access/index_key.pass.cpp @@ -16,9 +16,9 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #if TEST_STD_VER >= 11 #include "container_test_types.h" #endif diff --git a/libcxx/test/std/containers/associative/map/map.access/index_rv_key.pass.cpp b/libcxx/test/std/containers/associative/map/map.access/index_rv_key.pass.cpp index 7effa0c6415..22ddaa23010 100644 --- a/libcxx/test/std/containers/associative/map/map.access/index_rv_key.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.access/index_rv_key.pass.cpp @@ -18,7 +18,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" #include "MoveOnly.h" #include "min_allocator.h" #include "container_test_types.h" diff --git a/libcxx/test/std/containers/associative/map/map.ops/count.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/count.pass.cpp index 8abae288bd8..138c5fd5c9e 100644 --- a/libcxx/test/std/containers/associative/map/map.ops/count.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/count.pass.cpp @@ -17,7 +17,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/map/map.ops/count_transparent.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/count_transparent.pass.cpp index fa649024269..666a2b4afc5 100644 --- a/libcxx/test/std/containers/associative/map/map.ops/count_transparent.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/count_transparent.pass.cpp @@ -20,7 +20,7 @@ #include <utility> #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "test_macros.h" struct Comp { diff --git a/libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp index c46e52c711c..76e9165b5de 100644 --- a/libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/map/map.ops/equal_range_transparent.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/equal_range_transparent.pass.cpp index 44221356165..ad343836471 100644 --- a/libcxx/test/std/containers/associative/map/map.ops/equal_range_transparent.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/equal_range_transparent.pass.cpp @@ -23,7 +23,7 @@ #include <utility> #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "test_macros.h" struct Comp { diff --git a/libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp index bcf498ecf23..909e93218af 100644 --- a/libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp index 5b1c925a6c4..29688ba7bdc 100644 --- a/libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp b/libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp index c7fdd879a35..68e75b63565 100644 --- a/libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/count.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/count.pass.cpp index 053a771bae3..40b855b11e9 100644 --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/count.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/count.pass.cpp @@ -17,7 +17,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/count_transparent.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/count_transparent.pass.cpp index e6348cbef2a..18d3225097a 100644 --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/count_transparent.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/count_transparent.pass.cpp @@ -20,7 +20,7 @@ #include <utility> #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "test_macros.h" struct Comp { diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp index 3d4997f4844..0aef2dddfa3 100644 --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range_transparent.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range_transparent.pass.cpp index 95af97cee52..b2f1c33a0dc 100644 --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range_transparent.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range_transparent.pass.cpp @@ -23,7 +23,7 @@ #include <utility> #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "test_macros.h" struct Comp { diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp index e526d9a3270..0680d5b6c39 100644 --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp index 77550b5186a..5404c22a1cd 100644 --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp b/libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp index 762387d800d..2bc16d4784b 100644 --- a/libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "is_transparent.h" int main(int, char**) diff --git a/libcxx/test/std/containers/associative/multiset/count.pass.cpp b/libcxx/test/std/containers/associative/multiset/count.pass.cpp index 3ac6f942304..21575fc12ba 100644 --- a/libcxx/test/std/containers/associative/multiset/count.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/count.pass.cpp @@ -17,7 +17,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/multiset/count_transparent.pass.cpp b/libcxx/test/std/containers/associative/multiset/count_transparent.pass.cpp index 1239286f76c..d686663bd93 100644 --- a/libcxx/test/std/containers/associative/multiset/count_transparent.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/count_transparent.pass.cpp @@ -22,7 +22,7 @@ #include <utility> #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "test_macros.h" struct Comp { diff --git a/libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp b/libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp index 44c6c17ecce..e32fc0ad891 100644 --- a/libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/multiset/equal_range_transparent.pass.cpp b/libcxx/test/std/containers/associative/multiset/equal_range_transparent.pass.cpp index d052cf169b7..7e9c2615a6a 100644 --- a/libcxx/test/std/containers/associative/multiset/equal_range_transparent.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/equal_range_transparent.pass.cpp @@ -24,7 +24,7 @@ #include <utility> #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "test_macros.h" struct Comp { diff --git a/libcxx/test/std/containers/associative/multiset/find.pass.cpp b/libcxx/test/std/containers/associative/multiset/find.pass.cpp index 7a6584b2bb1..832e88f0b21 100644 --- a/libcxx/test/std/containers/associative/multiset/find.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/find.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp b/libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp index 6d31f04c8ee..9c776a3df60 100644 --- a/libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp b/libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp index 99a7e374d12..ebcd1eb060e 100644 --- a/libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/set/count.pass.cpp b/libcxx/test/std/containers/associative/set/count.pass.cpp index 8866aa7f057..06ddf78b968 100644 --- a/libcxx/test/std/containers/associative/set/count.pass.cpp +++ b/libcxx/test/std/containers/associative/set/count.pass.cpp @@ -17,7 +17,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/set/count_transparent.pass.cpp b/libcxx/test/std/containers/associative/set/count_transparent.pass.cpp index d94188def08..b1b9bb17c80 100644 --- a/libcxx/test/std/containers/associative/set/count_transparent.pass.cpp +++ b/libcxx/test/std/containers/associative/set/count_transparent.pass.cpp @@ -22,7 +22,7 @@ #include <utility> #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "test_macros.h" struct Comp { diff --git a/libcxx/test/std/containers/associative/set/equal_range.pass.cpp b/libcxx/test/std/containers/associative/set/equal_range.pass.cpp index 5c43706118d..23c5269afc3 100644 --- a/libcxx/test/std/containers/associative/set/equal_range.pass.cpp +++ b/libcxx/test/std/containers/associative/set/equal_range.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/set/equal_range_transparent.pass.cpp b/libcxx/test/std/containers/associative/set/equal_range_transparent.pass.cpp index b69ff2d522f..1644a17ab07 100644 --- a/libcxx/test/std/containers/associative/set/equal_range_transparent.pass.cpp +++ b/libcxx/test/std/containers/associative/set/equal_range_transparent.pass.cpp @@ -24,7 +24,7 @@ #include <utility> #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" #include "test_macros.h" struct Comp { diff --git a/libcxx/test/std/containers/associative/set/find.pass.cpp b/libcxx/test/std/containers/associative/set/find.pass.cpp index cda1ea87aa5..c32a3336ec2 100644 --- a/libcxx/test/std/containers/associative/set/find.pass.cpp +++ b/libcxx/test/std/containers/associative/set/find.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/set/lower_bound.pass.cpp b/libcxx/test/std/containers/associative/set/lower_bound.pass.cpp index 9a25950a851..992e6e783c5 100644 --- a/libcxx/test/std/containers/associative/set/lower_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/set/lower_bound.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/associative/set/upper_bound.pass.cpp b/libcxx/test/std/containers/associative/set/upper_bound.pass.cpp index 3649a5c0455..fc522b9b11e 100644 --- a/libcxx/test/std/containers/associative/set/upper_bound.pass.cpp +++ b/libcxx/test/std/containers/associative/set/upper_bound.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "private_constructor.hpp" +#include "private_constructor.h" int main(int, char**) { diff --git a/libcxx/test/std/containers/map_allocator_requirement_test_templates.h b/libcxx/test/std/containers/map_allocator_requirement_test_templates.h index 64b4b60ca7d..7dc220f9367 100644 --- a/libcxx/test/std/containers/map_allocator_requirement_test_templates.h +++ b/libcxx/test/std/containers/map_allocator_requirement_test_templates.h @@ -23,7 +23,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" #include "container_test_types.h" #include "assert_checkpoint.h" diff --git a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp index a5cb1388e23..589ae66f436 100644 --- a/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp +++ b/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" template <class L, class Predicate> diff --git a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_iter_iter.pass.cpp b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_iter_iter.pass.cpp index 22ef0f72b90..708e57cda4c 100644 --- a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_iter_iter.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_iter_iter.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "test_iterators.h" #include "min_allocator.h" -#include "count_new.hpp" +#include "count_new.h" template <class List> void test() { diff --git a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp index f577fc0bcb4..2d20097471a 100644 --- a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "min_allocator.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" template <class List> diff --git a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp index 10a3d970406..4b405125cd0 100644 --- a/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp @@ -16,7 +16,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "count_new.hpp" +#include "count_new.h" template <class List> void test() diff --git a/libcxx/test/std/containers/sequences/list/list.ops/remove_if.pass.cpp b/libcxx/test/std/containers/sequences/list/list.ops/remove_if.pass.cpp index 0944e685ce4..be7ff85764c 100644 --- a/libcxx/test/std/containers/sequences/list/list.ops/remove_if.pass.cpp +++ b/libcxx/test/std/containers/sequences/list/list.ops/remove_if.pass.cpp @@ -17,7 +17,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "counting_predicates.hpp" +#include "counting_predicates.h" bool even(int i) { diff --git a/libcxx/test/std/containers/sequences/vector.bool/enabled_hash.pass.cpp b/libcxx/test/std/containers/sequences/vector.bool/enabled_hash.pass.cpp index 9ed0898fa0d..1da874bfe9a 100644 --- a/libcxx/test/std/containers/sequences/vector.bool/enabled_hash.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector.bool/enabled_hash.pass.cpp @@ -15,7 +15,7 @@ #include <vector> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" #include "min_allocator.h" diff --git a/libcxx/test/std/containers/set_allocator_requirement_test_templates.h b/libcxx/test/std/containers/set_allocator_requirement_test_templates.h index 992b32b9b46..5135a16ec8b 100644 --- a/libcxx/test/std/containers/set_allocator_requirement_test_templates.h +++ b/libcxx/test/std/containers/set_allocator_requirement_test_templates.h @@ -22,7 +22,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" #include "container_test_types.h" #include "assert_checkpoint.h" diff --git a/libcxx/test/std/containers/unord/unord.map/unord.map.elem/index.pass.cpp b/libcxx/test/std/containers/unord/unord.map/unord.map.elem/index.pass.cpp index ff83f1d6842..9ca0edb0767 100644 --- a/libcxx/test/std/containers/unord/unord.map/unord.map.elem/index.pass.cpp +++ b/libcxx/test/std/containers/unord/unord.map/unord.map.elem/index.pass.cpp @@ -22,7 +22,7 @@ #include "test_macros.h" #include "MoveOnly.h" #include "min_allocator.h" -#include "count_new.hpp" +#include "count_new.h" #if TEST_STD_VER >= 11 #include "container_test_types.h" diff --git a/libcxx/test/std/diagnostics/syserr/syserr.hash/enabled_hash.pass.cpp b/libcxx/test/std/diagnostics/syserr/syserr.hash/enabled_hash.pass.cpp index 7d1510391fc..bf5fb597add 100644 --- a/libcxx/test/std/diagnostics/syserr/syserr.hash/enabled_hash.pass.cpp +++ b/libcxx/test/std/diagnostics/syserr/syserr.hash/enabled_hash.pass.cpp @@ -15,7 +15,7 @@ #include <system_error> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/default.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/default.pass.cpp index 90efbf46c97..b71cebb7b7f 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/default.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/default.pass.cpp @@ -18,7 +18,7 @@ #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/memory_resource_convert.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/memory_resource_convert.pass.cpp index d0d33b3b002..f687367bf93 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/memory_resource_convert.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/memory_resource_convert.pass.cpp @@ -18,7 +18,7 @@ #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/equal.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/equal.pass.cpp index 8b216e1c546..2d940e572eb 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/equal.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/equal.pass.cpp @@ -21,7 +21,7 @@ #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/not_equal.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/not_equal.pass.cpp index 803e9a0ba69..459ec47ed96 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/not_equal.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/not_equal.pass.cpp @@ -21,7 +21,7 @@ #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/allocate.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/allocate.pass.cpp index af51ffc82ff..46be069b0be 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/allocate.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/allocate.pass.cpp @@ -22,7 +22,7 @@ #include <cassert> #include "test_macros.h" -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" namespace ex = std::experimental::pmr; diff --git a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair.pass.cpp index de8a26195d5..49cd870c6a4 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair.pass.cpp @@ -21,7 +21,7 @@ #include <tuple> #include <cassert> #include <cstdlib> -#include "uses_alloc_types.hpp" +#include "uses_alloc_types.h" #include "test_macros.h" 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 3b97ec30477..62bd473df07 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,9 +23,9 @@ #include <cstdlib> #include "test_macros.h" -#include "test_memory_resource.hpp" -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "test_memory_resource.h" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #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 5e0597e2568..63416d8924f 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,9 +23,9 @@ #include <cstdlib> #include "test_macros.h" -#include "test_memory_resource.hpp" -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "test_memory_resource.h" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #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 1eaae061c26..3e897916d99 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,9 +23,9 @@ #include <cstdlib> #include "test_macros.h" -#include "test_memory_resource.hpp" -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "test_memory_resource.h" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #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 f75bd9e9855..fc946e03116 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,9 +24,9 @@ #include <cstdlib> #include "test_macros.h" -#include "test_memory_resource.hpp" -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "test_memory_resource.h" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #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 0afc53ba4ca..f7bff71031f 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,9 +21,9 @@ #include <cstdlib> #include "test_macros.h" -#include "test_memory_resource.hpp" -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "test_memory_resource.h" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #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/deallocate.pass.cpp b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/deallocate.pass.cpp index 5677b868cb9..b834e201ded 100644 --- a/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/deallocate.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/deallocate.pass.cpp @@ -18,7 +18,7 @@ #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_copy.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_copy.pass.cpp index e8d9c77bcc2..c54ea4724b3 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_copy.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_copy.pass.cpp @@ -17,7 +17,7 @@ #include <experimental/memory_resource> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_move.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_move.pass.cpp index 959ec44049f..28e4d4dc768 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_move.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_move.pass.cpp @@ -17,7 +17,7 @@ #include <experimental/memory_resource> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/default.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/default.pass.cpp index 2885a39a558..9b174120b53 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/default.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/default.pass.cpp @@ -19,7 +19,7 @@ #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_allocate_and_deallocate.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_allocate_and_deallocate.pass.cpp index f88d6fcc2d4..6a8217d2aa5 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_allocate_and_deallocate.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_allocate_and_deallocate.pass.cpp @@ -27,7 +27,7 @@ #include <cassert> #include "test_macros.h" -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" namespace ex = std::experimental::pmr; diff --git a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_is_equal.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_is_equal.pass.cpp index f9879780398..914fa1abb4f 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_is_equal.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_is_equal.pass.cpp @@ -18,7 +18,7 @@ #include <type_traits> #include <memory> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource.aliases/header_string_synop.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.aliases/header_string_synop.pass.cpp index faf1f85f053..f482d849da1 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.aliases/header_string_synop.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.aliases/header_string_synop.pass.cpp @@ -28,7 +28,7 @@ #include <type_traits> #include <cassert> -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource.global/default_resource.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.global/default_resource.pass.cpp index ac2726ef9a7..5aca44c0d58 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.global/default_resource.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.global/default_resource.pass.cpp @@ -31,7 +31,7 @@ #include <experimental/memory_resource> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource.global/new_delete_resource.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.global/new_delete_resource.pass.cpp index 9b9c505e6e4..788d74b08ec 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.global/new_delete_resource.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.global/new_delete_resource.pass.cpp @@ -16,7 +16,7 @@ #include <type_traits> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource.global/null_memory_resource.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.global/null_memory_resource.pass.cpp index 5afbaf4204f..1d1884d3674 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.global/null_memory_resource.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.global/null_memory_resource.pass.cpp @@ -18,7 +18,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" namespace ex = std::experimental::pmr; diff --git a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/equal.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/equal.pass.cpp index f9d4d5beb91..2d9a1afe0f1 100644 --- a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/equal.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/equal.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "test_macros.h" -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" namespace ex = std::experimental::pmr; diff --git a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/not_equal.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/not_equal.pass.cpp index 3f5e35558a2..d757baacb9e 100644 --- a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/not_equal.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/not_equal.pass.cpp @@ -16,7 +16,7 @@ #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/allocate.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/allocate.pass.cpp index 38f49743cca..cc80fbe46d9 100644 --- a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/allocate.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/allocate.pass.cpp @@ -27,7 +27,7 @@ #include <cassert> #include "test_macros.h" -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" using std::experimental::pmr::memory_resource; diff --git a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/deallocate.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/deallocate.pass.cpp index c315508d66f..77ffb230803 100644 --- a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/deallocate.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/deallocate.pass.cpp @@ -26,7 +26,7 @@ #include <cstddef> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/dtor.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/dtor.pass.cpp index b017c355662..4759e835016 100644 --- a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/dtor.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/dtor.pass.cpp @@ -22,7 +22,7 @@ #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/is_equal.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/is_equal.pass.cpp index 9f66b8adcb6..fd63171ad19 100644 --- a/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/is_equal.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/is_equal.pass.cpp @@ -24,7 +24,7 @@ #include <experimental/memory_resource> #include <type_traits> #include <cassert> -#include "test_memory_resource.hpp" +#include "test_memory_resource.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy.pass.cpp index 717c766b9e3..31835898fa9 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy.pass.cpp @@ -14,14 +14,14 @@ // directory_entry(const directory_entry&) = default; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" -#include "test_convertible.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" +#include "test_convertible.h" TEST_SUITE(directory_entry_path_ctor_suite) diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy_assign.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy_assign.pass.cpp index 4040933e9f7..11ee2fd9852 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy_assign.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy_assign.pass.cpp @@ -17,13 +17,13 @@ // void assign(path const&); // void replace_filename(path const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" TEST_SUITE(directory_entry_ctor_suite) diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default.pass.cpp index 5d28de35cdf..0bc670301dc 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default.pass.cpp @@ -14,7 +14,7 @@ // directory_entry() noexcept = default; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default_const.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default_const.pass.cpp index 39fc5212b68..75e626335fd 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default_const.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default_const.pass.cpp @@ -15,7 +15,7 @@ // directory_entry() noexcept = default; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move.pass.cpp index f4c7e44e90a..4e5b2831188 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move.pass.cpp @@ -14,14 +14,14 @@ // directory_entry(directory_entry&&) noexcept = default; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" -#include "test_convertible.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" +#include "test_convertible.h" TEST_SUITE(directory_entry_path_ctor_suite) diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move_assign.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move_assign.pass.cpp index 38107da07c9..9c85547cb73 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move_assign.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move_assign.pass.cpp @@ -17,13 +17,13 @@ // void assign(path const&); // void replace_filename(path const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" TEST_SUITE(directory_entry_ctor_suite) diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/path.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/path.pass.cpp index aac7f76cbf5..5188427b909 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/path.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/path.pass.cpp @@ -15,14 +15,14 @@ // explicit directory_entry(const path); // directory_entry(const path&, error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" -#include "test_convertible.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" +#include "test_convertible.h" TEST_SUITE(directory_entry_path_ctor_suite) diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/assign.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/assign.pass.cpp index b2240ed769d..0c5180b3530 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/assign.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/assign.pass.cpp @@ -17,13 +17,13 @@ // void assign(path const&); // void replace_filename(path const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" TEST_SUITE(directory_entry_mods_suite) diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/refresh.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/refresh.pass.cpp index 859763b91d8..a9a01a5d5e0 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/refresh.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/refresh.pass.cpp @@ -17,13 +17,13 @@ // void assign(path const&); // void replace_filename(path const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" TEST_SUITE(directory_entry_mods_suite) diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/replace_filename.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/replace_filename.pass.cpp index e8ecdee32f2..8ceb48ba50d 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/replace_filename.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/replace_filename.pass.cpp @@ -17,13 +17,13 @@ // void assign(path const&); // void replace_filename(path const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" TEST_SUITE(directory_entry_mods_suite) diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp index 2cac5470017..1633d9f378d 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp @@ -20,7 +20,7 @@ // bool operator>=(directory_entry const&) const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_size.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_size.pass.cpp index 2d9d938eb10..0ebbb293c99 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_size.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_size.pass.cpp @@ -15,12 +15,12 @@ // uintmax_t file_size() const; // uintmax_t file_size(error_code const&) const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> -#include "filesystem_test_helper.hpp" -#include "rapid-cxx-test.hpp" +#include "filesystem_test_helper.h" +#include "rapid-cxx-test.h" #include <iostream> diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_type_obs.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_type_obs.pass.cpp index 0a0c5ac7a89..f5a44b76a8b 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_type_obs.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_type_obs.pass.cpp @@ -15,12 +15,12 @@ // file_status status() const; // file_status status(error_code const&) const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> -#include "filesystem_test_helper.hpp" -#include "rapid-cxx-test.hpp" +#include "filesystem_test_helper.h" +#include "rapid-cxx-test.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/hard_link_count.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/hard_link_count.pass.cpp index 207eb6d2d70..c7d30d19190 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/hard_link_count.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/hard_link_count.pass.cpp @@ -15,12 +15,12 @@ // uintmax_t hard_link_count() const; // uintmax_t hard_link_count(error_code const&) const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> -#include "filesystem_test_helper.hpp" -#include "rapid-cxx-test.hpp" +#include "filesystem_test_helper.h" +#include "rapid-cxx-test.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/last_write_time.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/last_write_time.pass.cpp index 5da5528ed8b..fd6c81cd730 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/last_write_time.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/last_write_time.pass.cpp @@ -15,12 +15,12 @@ // file_time_type last_write_time() const; // file_time_type last_write_time(error_code const&) const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> -#include "filesystem_test_helper.hpp" -#include "rapid-cxx-test.hpp" +#include "filesystem_test_helper.h" +#include "rapid-cxx-test.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/path.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/path.pass.cpp index fea35d398fa..6f2a995d2ff 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/path.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/path.pass.cpp @@ -15,7 +15,7 @@ // const path& path() const noexcept; // operator const path&() const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/status.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/status.pass.cpp index 2763c47052f..8ea1fdbcbe6 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/status.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/status.pass.cpp @@ -15,12 +15,12 @@ // file_status status() const; // file_status status(error_code const&) const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> -#include "filesystem_test_helper.hpp" -#include "rapid-cxx-test.hpp" +#include "filesystem_test_helper.h" +#include "rapid-cxx-test.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/symlink_status.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/symlink_status.pass.cpp index bfa16fd57d0..cff19bc583f 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/symlink_status.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/symlink_status.pass.cpp @@ -15,12 +15,12 @@ // file_status symlink_status() const; // file_status symlink_status(error_code&) const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> -#include "filesystem_test_helper.hpp" -#include "rapid-cxx-test.hpp" +#include "filesystem_test_helper.h" +#include "rapid-cxx-test.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy.pass.cpp index 99da0c9ffc3..ca607ad1035 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy.pass.cpp @@ -14,14 +14,14 @@ // directory_iterator(directory_iterator const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy_assign.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy_assign.pass.cpp index 6dd81f291a0..966501b6abd 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy_assign.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy_assign.pass.cpp @@ -14,14 +14,14 @@ // directory_iterator& operator=(directory_iterator const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/ctor.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/ctor.pass.cpp index 8cbea9dfca5..325228a5e61 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/ctor.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/ctor.pass.cpp @@ -17,14 +17,14 @@ // directory_iterator(const path& p, error_code& ec); // directory_iterator(const path& p, directory_options options, error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/default_ctor.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/default_ctor.pass.cpp index 9f60ec28674..6fdebb3af72 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/default_ctor.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/default_ctor.pass.cpp @@ -15,7 +15,7 @@ // directory_iterator::directory_iterator() noexcept -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/increment.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/increment.pass.cpp index 71f7b2adae5..ca954e9b2e5 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/increment.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/increment.pass.cpp @@ -15,14 +15,14 @@ // directory_iterator& operator++(); // directory_iterator& increment(error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" #include <iostream> using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move.pass.cpp index 7870d73b7c3..055b157523e 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move.pass.cpp @@ -14,14 +14,14 @@ // directory_iterator(directory_iterator&&) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move_assign.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move_assign.pass.cpp index 2e41740ae72..de769546f8e 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move_assign.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move_assign.pass.cpp @@ -14,14 +14,14 @@ // directory_iterator& operator=(directory_iterator const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" // The filesystem specification explicitly allows for self-move on // the directory iterators. Turn off this warning so we can test it. diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.nonmembers/begin_end.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.nonmembers/begin_end.pass.cpp index 2fd6abe2962..31344524a42 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.nonmembers/begin_end.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.nonmembers/begin_end.pass.cpp @@ -15,14 +15,14 @@ // directory_iterator begin(directory_iterator iter) noexcept; // directory_iterator end(directory_iterator iter) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" #include <iostream> using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp index 3932be0216b..9d9f9238a0a 100644 --- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp @@ -18,7 +18,7 @@ // typedef ... reference; // typedef ... iterator_category -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.file_status/file_status.cons.pass.cpp b/libcxx/test/std/input.output/filesystems/class.file_status/file_status.cons.pass.cpp index 6d5b9e6a9e0..aba2e66ddba 100644 --- a/libcxx/test/std/input.output/filesystems/class.file_status/file_status.cons.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.file_status/file_status.cons.pass.cpp @@ -15,11 +15,11 @@ // explicit file_status() noexcept; // explicit file_status(file_type, perms prms = perms::unknown) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> -#include "test_convertible.hpp" +#include "test_convertible.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/class.file_status/file_status.mods.pass.cpp b/libcxx/test/std/input.output/filesystems/class.file_status/file_status.mods.pass.cpp index 3e7df00d38a..9d00f31d622 100644 --- a/libcxx/test/std/input.output/filesystems/class.file_status/file_status.mods.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.file_status/file_status.mods.pass.cpp @@ -15,7 +15,7 @@ // void type(file_type) noexcept; // void permissions(perms) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.file_status/file_status.obs.pass.cpp b/libcxx/test/std/input.output/filesystems/class.file_status/file_status.obs.pass.cpp index 5583d84b320..6ab9c25f3b2 100644 --- a/libcxx/test/std/input.output/filesystems/class.file_status/file_status.obs.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.file_status/file_status.obs.pass.cpp @@ -15,7 +15,7 @@ // file_type type() const noexcept; // perms permissions(p) const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp b/libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp index d9d1a03332d..85e09bb7cde 100644 --- a/libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp @@ -20,7 +20,7 @@ // const path& path1() const noexcept; // const path& path2() const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.itr/iterator.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.itr/iterator.pass.cpp index 558206d7082..07f57ef15bd 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.itr/iterator.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.itr/iterator.pass.cpp @@ -18,13 +18,13 @@ // path(InputIterator first, InputIterator last); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <iterator> #include <type_traits> #include <cassert> #include "test_macros.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp index 2f468e59554..9a9fadea9a9 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp @@ -21,15 +21,15 @@ // path& append(InputIterator first, InputIterator last); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <string_view> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" #include "verbose_assert.h" diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/braced_init.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/braced_init.pass.cpp index aff89f27bd3..11eb9e49c8b 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/braced_init.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/braced_init.pass.cpp @@ -14,12 +14,12 @@ // path& operator=(path const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" int main(int, char**) { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp index 9265c70f6f4..878d2196c73 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp @@ -14,7 +14,7 @@ // path& operator=(path const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp index 5e5fb1e0e06..b845c8770ce 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp @@ -14,12 +14,12 @@ // path& operator=(path&&) noexcept -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" int main(int, char**) { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp index 9c23e3b3ebf..e7d79dc4d87 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp @@ -21,15 +21,15 @@ // path& assign(InputIterator first, InputIterator last); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <string_view> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" #include <iostream> diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.compare.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.compare.pass.cpp index 165e62fe4fe..3a9d1f5bf42 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.compare.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.compare.pass.cpp @@ -26,15 +26,15 @@ // size_t hash_value(path const&) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <vector> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" #include "verbose_assert.h" struct PathCompareTest { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.concat.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.concat.pass.cpp index b074e831e15..4bec0bf8f48 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.concat.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.concat.pass.cpp @@ -27,7 +27,7 @@ // path& concat(InputIterator first, InputIterator last); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <string> #include <string_view> @@ -35,8 +35,8 @@ #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" struct ConcatOperatorTestcase { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp index 1490c0b9fed..1260c66192b 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp @@ -14,7 +14,7 @@ // path(path const&) -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/default.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/default.pass.cpp index b31728da1f9..08461ccedc0 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/default.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/default.pass.cpp @@ -14,7 +14,7 @@ // path() noexcept -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp index 494a77c3c86..a1a07fb2b06 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp @@ -14,12 +14,12 @@ // path(path&&) noexcept -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" int main(int, char**) { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/source.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/source.pass.cpp index bcb9986cec9..fa68b5de112 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/source.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/source.pass.cpp @@ -18,14 +18,14 @@ // path(InputIterator first, InputIterator last); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" #include "min_allocator.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" template <class CharT, class ...Args> diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/empty.fail.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/empty.fail.cpp index 5248f67515a..dbadf468805 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/empty.fail.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/empty.fail.cpp @@ -16,7 +16,7 @@ // UNSUPPORTED: c++98, c++03, c++11, c++14, c++17 // UNSUPPORTED: clang-3.3, clang-3.4, clang-3.5, clang-3.6, clang-3.7, clang-3.8 -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/path.decompose.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/path.decompose.pass.cpp index be9cefb76a8..4674dc1f590 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/path.decompose.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/path.decompose.pass.cpp @@ -43,15 +43,15 @@ // iterator end() const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <vector> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" #include "assert_checkpoint.h" #include "verbose_assert.h" diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp index f1e616542e9..5d4e689eebc 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp @@ -14,7 +14,7 @@ // path lexically_normal() const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <vector> #include <iostream> @@ -22,8 +22,8 @@ #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" int main(int, char**) { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_relative_and_proximate.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_relative_and_proximate.pass.cpp index 7e31956ee50..0466b8a708b 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_relative_and_proximate.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_relative_and_proximate.pass.cpp @@ -15,7 +15,7 @@ // path lexically_relative(const path& p) const; // path lexically_proximate(const path& p) const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <vector> #include <iostream> @@ -23,8 +23,8 @@ #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" int main(int, char**) { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/generic_string_alloc.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/generic_string_alloc.pass.cpp index 707a7010ffb..d6082cb5ef7 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/generic_string_alloc.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/generic_string_alloc.pass.cpp @@ -17,15 +17,15 @@ // basic_string<ECharT, Traits, Allocator> // generic_string(const Allocator& a = Allocator()) const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" +#include "count_new.h" #include "min_allocator.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" MultiStringType longString = MKSTR("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ/123456789/abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"); diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/named_overloads.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/named_overloads.pass.cpp index 04ae673ac48..454833dbefe 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/named_overloads.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/named_overloads.pass.cpp @@ -19,15 +19,15 @@ // std::u32string generic_u32string() const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" +#include "count_new.h" #include "min_allocator.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" MultiStringType longString = MKSTR("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ/123456789/abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"); diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/clear.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/clear.pass.cpp index 01538539faf..b20abd4fd66 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/clear.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/clear.pass.cpp @@ -14,14 +14,14 @@ // void clear() noexcept -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" int main(int, char**) { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/make_preferred.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/make_preferred.pass.cpp index 4530ef87554..aeb2028867b 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/make_preferred.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/make_preferred.pass.cpp @@ -14,14 +14,14 @@ // path& make_preferred() -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" struct MakePreferredTestcase { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/remove_filename.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/remove_filename.pass.cpp index 7cb562c227f..a000dccc088 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/remove_filename.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/remove_filename.pass.cpp @@ -14,14 +14,14 @@ // path& remove_filename() -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" #include "verbose_assert.h" struct RemoveFilenameTestcase { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_extension.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_extension.pass.cpp index 6fec420baa0..69b3dbd139c 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_extension.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_extension.pass.cpp @@ -14,14 +14,14 @@ // path& replace_extension(path const& p = path()) -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" struct ReplaceExtensionTestcase { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_filename.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_filename.pass.cpp index 8142e790731..2369cc6527b 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_filename.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_filename.pass.cpp @@ -14,14 +14,14 @@ // path& replace_filename() -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" #include "assert_checkpoint.h" #include "verbose_assert.h" diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/swap.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/swap.pass.cpp index 2e9dac5e438..3b9e255e0dd 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/swap.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/swap.pass.cpp @@ -14,14 +14,14 @@ // void swap(path& rhs) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" struct SwapTestcase { diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/c_str.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/c_str.pass.cpp index 8b35ee8c80a..3b8ac09b3f4 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/c_str.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/c_str.pass.cpp @@ -15,12 +15,12 @@ // const value_type* c_str() const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" int main(int, char**) diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/named_overloads.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/named_overloads.pass.cpp index c06de9795e3..4ab101cc590 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/named_overloads.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/named_overloads.pass.cpp @@ -19,15 +19,15 @@ // std::u32string u32string() const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" +#include "count_new.h" #include "min_allocator.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" MultiStringType longString = MKSTR("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ/123456789/abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"); diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/native.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/native.pass.cpp index 3b88b5d6c64..e802a061d48 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/native.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/native.pass.cpp @@ -14,12 +14,12 @@ // const string_type& native() const noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" int main(int, char**) diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/operator_string.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/operator_string.pass.cpp index 9f0069051fd..292a61b9cd6 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/operator_string.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/operator_string.pass.cpp @@ -15,12 +15,12 @@ // operator string_type() const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" int main(int, char**) diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/string_alloc.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/string_alloc.pass.cpp index 4ace380b873..c1a7c426d1b 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/string_alloc.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/string_alloc.pass.cpp @@ -17,15 +17,15 @@ // basic_string<ECharT, Traits, Allocator> // string(const Allocator& a = Allocator()) const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" +#include "count_new.h" #include "min_allocator.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" // the SSO is always triggered for strings of size 2. diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.fail.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.fail.cpp index bcc4758f45f..e326c171280 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.fail.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.fail.cpp @@ -10,7 +10,7 @@ // <filesystem> -#include "filesystem_include.hpp" +#include "filesystem_include.h" using namespace fs; @@ -25,4 +25,4 @@ int main(int, char**) { (void)(LHS / RHS); // expected-error {{invalid operands to binary expression}} return 0; -}
\ No newline at end of file +} diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.pass.cpp index 67af37686df..ea36fb1e9ea 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.pass.cpp @@ -12,12 +12,12 @@ // path operator/(path const&, path const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "filesystem_test_helper.hpp" +#include "filesystem_test_helper.h" // This is mainly tested via the member append functions. int main(int, char**) diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/comparison_ops.fail.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/comparison_ops.fail.cpp index 8f1732186d8..1e73ad3ee47 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/comparison_ops.fail.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/comparison_ops.fail.cpp @@ -11,7 +11,7 @@ // <filesystem> -#include "filesystem_include.hpp" +#include "filesystem_include.h" using namespace fs; @@ -31,4 +31,4 @@ int main(int, char**) { (void)(LHS >= RHS); // expected-error {{invalid operands to binary expression}} return 0; -}
\ No newline at end of file +} diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp index 557849ca8e6..90bf1c9b603 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp @@ -15,14 +15,14 @@ // template <class InputIter> // path u8path(InputIter, InputIter); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" int main(int, char**) diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.pass.cpp index 31eea925a5d..a5ec9592e45 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.pass.cpp @@ -21,7 +21,7 @@ // operator>>(basic_istream<charT, traits>& is, path& p) // -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <sstream> #include <cassert> @@ -29,8 +29,8 @@ #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" MultiStringType InStr = MKSTR("abcdefg/\"hijklmnop\"/qrstuvwxyz/123456789"); MultiStringType OutStr = MKSTR("\"abcdefg/\\\"hijklmnop\\\"/qrstuvwxyz/123456789\""); diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.unicode_bug.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.unicode_bug.pass.cpp index c5bb6bf120f..fb2fd4654d0 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.unicode_bug.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.unicode_bug.pass.cpp @@ -26,15 +26,15 @@ // passes. // XFAIL: * -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <sstream> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" MultiStringType InStr = MKSTR("abcdefg/\"hijklmnop\"/qrstuvwxyz/123456789"); MultiStringType OutStr = MKSTR("\"abcdefg/\\\"hijklmnop\\\"/qrstuvwxyz/123456789\""); diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/swap.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/swap.pass.cpp index 51bb03e9f7c..c327ed248a7 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/swap.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.nonmember/swap.pass.cpp @@ -12,13 +12,13 @@ // void swap(path& lhs, path& rhs) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" // NOTE: this is tested in path.members/path.modifiers via the member swap. diff --git a/libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp index 8aa186e32ae..a47ab2564a6 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp @@ -16,7 +16,7 @@ // typedef basic_string<value_type> string_type; // static constexpr value_type preferred_separator = ...; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy.pass.cpp index 9179908a6ed..695ac374e2d 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy.pass.cpp @@ -14,14 +14,14 @@ // recursive_recursive_directory_iterator(recursive_recursive_directory_iterator const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy_assign.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy_assign.pass.cpp index de97832c4fa..2fcebe96fcd 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy_assign.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy_assign.pass.cpp @@ -14,14 +14,14 @@ // recursive_directory_iterator& operator=(recursive_directory_iterator const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/ctor.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/ctor.pass.cpp index 114285e8fd5..538f547f308 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/ctor.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/ctor.pass.cpp @@ -19,14 +19,14 @@ // recursive_directory_iterator(const path& p, directory_options options, error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/depth.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/depth.pass.cpp index 47b344a7f18..23adbbe2507 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/depth.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/depth.pass.cpp @@ -14,14 +14,14 @@ // int depth() const -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/disable_recursion_pending.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/disable_recursion_pending.pass.cpp index a24559c68b9..eb5e63fc1c0 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/disable_recursion_pending.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/disable_recursion_pending.pass.cpp @@ -14,14 +14,14 @@ // void disable_recursion_pending(); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/increment.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/increment.pass.cpp index ea9f4de5d59..799cedf055c 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/increment.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/increment.pass.cpp @@ -15,14 +15,14 @@ // recursive_directory_iterator& operator++(); // recursive_directory_iterator& increment(error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move.pass.cpp index c203106d894..316f8e6f57e 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move.pass.cpp @@ -14,14 +14,14 @@ // recursive_directory_iterator(recursive_directory_iterator&&) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move_assign.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move_assign.pass.cpp index 7a41ada5662..b8dd1168cc5 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move_assign.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move_assign.pass.cpp @@ -14,14 +14,14 @@ // recursive_directory_iterator& operator=(recursive_directory_iterator const&); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" // The filesystem specification explicitly allows for self-move on // the directory iterators. Turn off this warning so we can test it. diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/pop.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/pop.pass.cpp index 2cf363821e1..55325e270ec 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/pop.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/pop.pass.cpp @@ -15,13 +15,13 @@ // void pop(); // void pop(error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/recursion_pending.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/recursion_pending.pass.cpp index 1ffe664ca40..120491a5aed 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/recursion_pending.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/recursion_pending.pass.cpp @@ -14,14 +14,14 @@ // bool recursion_pending() const; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.nonmembers/begin_end.pass.cpp b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.nonmembers/begin_end.pass.cpp index 91f20717a60..f1869ac988c 100644 --- a/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.nonmembers/begin_end.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.nonmembers/begin_end.pass.cpp @@ -15,14 +15,14 @@ // recursive_directory_iterator begin(recursive_directory_iterator iter) noexcept; // recursive_directory_iterator end(recursive_directory_iterator iter) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <set> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" #include <iostream> using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp index b949960df11..7bc129f20a2 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp @@ -12,7 +12,7 @@ // enum class copy_options; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp index 43b0945978e..44e1c63baa3 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp @@ -12,7 +12,7 @@ // enum class directory_options; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include <sys/stat.h> diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.file_type.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.file_type.pass.cpp index c1f16079a5d..097b41c7892 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.file_type.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.file_type.pass.cpp @@ -12,7 +12,7 @@ // enum class file_type; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.path.format.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.path.format.pass.cpp index d60225d4ff6..b00a935a021 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.path.format.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.path.format.pass.cpp @@ -13,7 +13,7 @@ // class path; // enum class format; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp index 1fd353d041f..41fb731a885 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp @@ -12,7 +12,7 @@ // enum class perm_options; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include <sys/stat.h> diff --git a/libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp index 93b5278fdd4..a9613f2e880 100644 --- a/libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp @@ -12,7 +12,7 @@ // enum class perms; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include <sys/stat.h> diff --git a/libcxx/test/std/input.output/filesystems/fs.filesystem.synopsis/file_time_type.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.filesystem.synopsis/file_time_type.pass.cpp index e88ef1d12c4..b16f8601f27 100644 --- a/libcxx/test/std/input.output/filesystems/fs.filesystem.synopsis/file_time_type.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.filesystem.synopsis/file_time_type.pass.cpp @@ -12,7 +12,7 @@ // typedef TrivialClock file_time_type; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <chrono> #include <type_traits> diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.absolute/absolute.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.absolute/absolute.pass.cpp index 2f06fd16557..c2b64662389 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.absolute/absolute.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.absolute/absolute.pass.cpp @@ -12,13 +12,13 @@ // path absolute(const path& p, const path& base=current_path()); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/canonical.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/canonical.pass.cpp index 7717c261eb8..9009e7d5d10 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/canonical.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/canonical.pass.cpp @@ -13,13 +13,13 @@ // path canonical(const path& p); // path canonical(const path& p, error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy/copy.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy/copy.pass.cpp index c791a74361d..82565433e31 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy/copy.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy/copy.pass.cpp @@ -16,14 +16,14 @@ // void copy(const path& from, const path& to, copy_options options, // error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cstddef> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file.pass.cpp index 90da3b535ad..5dd29f538c1 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file.pass.cpp @@ -16,14 +16,14 @@ // bool copy_file(const path& from, const path& to, copy_options options, // error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <chrono> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" #include <iostream> diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file_large.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file_large.pass.cpp index f419039fa89..24a3369e034 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file_large.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file_large.pass.cpp @@ -17,14 +17,14 @@ // bool copy_file(const path& from, const path& to, copy_options options, // error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <chrono> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_symlink/copy_symlink.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_symlink/copy_symlink.pass.cpp index e687ee5ded9..676e04b8f31 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_symlink/copy_symlink.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_symlink/copy_symlink.pass.cpp @@ -14,13 +14,13 @@ // void copy_symlink(const path& existing_symlink, const path& new_symlink, // error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp index c7a72038a76..1a7deefd751 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp @@ -13,13 +13,13 @@ // bool create_directories(const path& p); // bool create_directories(const path& p, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory.pass.cpp index f512a30efce..e5e21fa0b2c 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory.pass.cpp @@ -15,13 +15,13 @@ // bool create_directory(const path& p, const path& attr); // bool create_directory(const path& p, const path& attr, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" #include <sys/types.h> #include <sys/stat.h> diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory_with_attributes.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory_with_attributes.pass.cpp index 796b7a72af3..248c8bd8892 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory_with_attributes.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory_with_attributes.pass.cpp @@ -13,13 +13,13 @@ // bool create_directory(const path& p, const path& attr); // bool create_directory(const path& p, const path& attr, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory_symlink/create_directory_symlink.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory_symlink/create_directory_symlink.pass.cpp index e4bf0907436..3dc62917f11 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory_symlink/create_directory_symlink.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory_symlink/create_directory_symlink.pass.cpp @@ -14,12 +14,12 @@ // void create_directory_symlink(const path& existing_symlink, const path& new_symlink, // error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_hard_link/create_hard_link.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_hard_link/create_hard_link.pass.cpp index b645ccbc253..2f4da65bcd5 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_hard_link/create_hard_link.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_hard_link/create_hard_link.pass.cpp @@ -14,11 +14,11 @@ // void create_hard_link(const path& existing_symlink, const path& new_symlink, // error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_symlink/create_symlink.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_symlink/create_symlink.pass.cpp index a2658a51ead..c079ab34f2d 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_symlink/create_symlink.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_symlink/create_symlink.pass.cpp @@ -14,12 +14,12 @@ // void create_symlink(const path& existing_symlink, const path& new_symlink, // error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.current_path/current_path.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.current_path/current_path.pass.cpp index 41136a7a956..cb2d0d69c8a 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.current_path/current_path.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.current_path/current_path.pass.cpp @@ -15,13 +15,13 @@ // void current_path(path const&); // void current_path(path const&, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/equivalent.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/equivalent.pass.cpp index ebe4fc67bb9..382e9bbbfcc 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/equivalent.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/equivalent.pass.cpp @@ -13,13 +13,13 @@ // bool equivalent(path const& lhs, path const& rhs); // bool equivalent(path const& lhs, path const& rhs, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.exists/exists.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.exists/exists.pass.cpp index 2ae1c41e64c..45270d4cd0e 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.exists/exists.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.exists/exists.pass.cpp @@ -14,13 +14,13 @@ // bool exists(path const& p); // bool exists(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.file_size/file_size.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.file_size/file_size.pass.cpp index 3d597b04665..200358df1df 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.file_size/file_size.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.file_size/file_size.pass.cpp @@ -13,13 +13,13 @@ // uintmax_t file_size(const path& p); // uintmax_t file_size(const path& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp index 55527c90826..7a204ede109 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp @@ -13,13 +13,13 @@ // uintmax_t hard_link_count(const path& p); // uintmax_t hard_link_count(const path& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_block_file/is_block_file.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_block_file/is_block_file.pass.cpp index fbfb62c0e5f..6cfbc340c44 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_block_file/is_block_file.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_block_file/is_block_file.pass.cpp @@ -14,13 +14,13 @@ // bool is_block_file(path const& p); // bool is_block_file(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_char_file/is_character_file.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_char_file/is_character_file.pass.cpp index e011dce0739..12e66019b65 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_char_file/is_character_file.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_char_file/is_character_file.pass.cpp @@ -14,13 +14,13 @@ // bool is_character_file(path const& p); // bool is_character_file(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_directory/is_directory.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_directory/is_directory.pass.cpp index 049129834a3..73dc5380788 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_directory/is_directory.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_directory/is_directory.pass.cpp @@ -14,13 +14,13 @@ // bool is_directory(path const& p); // bool is_directory(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/is_empty.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/is_empty.pass.cpp index 8a8fc50f676..affc77f4889 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/is_empty.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/is_empty.pass.cpp @@ -13,13 +13,13 @@ // bool is_empty(path const& p); // bool is_empty(path const& p, std::error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_fifo/is_fifo.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_fifo/is_fifo.pass.cpp index 8cf036dfd89..4dcf0439036 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_fifo/is_fifo.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_fifo/is_fifo.pass.cpp @@ -14,13 +14,13 @@ // bool is_fifo(path const& p); // bool is_fifo(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/is_other.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/is_other.pass.cpp index fb7107060c1..894cc57aeba 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/is_other.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/is_other.pass.cpp @@ -14,13 +14,13 @@ // bool is_other(path const& p); // bool is_other(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_regular_file/is_regular_file.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_regular_file/is_regular_file.pass.cpp index 55d97f2e2e4..3fcf779b321 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_regular_file/is_regular_file.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_regular_file/is_regular_file.pass.cpp @@ -14,13 +14,13 @@ // bool is_regular_file(path const& p); // bool is_regular_file(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_socket/is_socket.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_socket/is_socket.pass.cpp index f0d894c997c..ba727d6384c 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_socket/is_socket.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_socket/is_socket.pass.cpp @@ -14,13 +14,13 @@ // bool is_socket(path const& p); // bool is_socket(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_symlink/is_symlink.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_symlink/is_symlink.pass.cpp index 8d17235714b..97b61427f39 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_symlink/is_symlink.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_symlink/is_symlink.pass.cpp @@ -14,13 +14,13 @@ // bool is_symlink(path const& p); // bool is_symlink(path const& p, std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp index 5e26e8e10a3..a66d4bff5d2 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp @@ -16,15 +16,15 @@ // void last_write_time(const path& p, file_time_type new_type, // std::error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <chrono> #include <fstream> #include <cstdlib> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" #include <sys/stat.h> #include <iostream> diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.permissions/permissions.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.permissions/permissions.pass.cpp index 434fcea1dd9..d3090f5d464 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.permissions/permissions.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.permissions/permissions.pass.cpp @@ -17,11 +17,11 @@ -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.proximate/proximate.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.proximate/proximate.pass.cpp index a7c498434df..a908d4c0425 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.proximate/proximate.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.proximate/proximate.pass.cpp @@ -14,7 +14,7 @@ // path proximate(const path& p, const path& base = current_path()) // path proximate(const path& p, const path& base, error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <vector> #include <iostream> @@ -22,9 +22,9 @@ #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" static int count_path_elems(const fs::path& p) { diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.read_symlink/read_symlink.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.read_symlink/read_symlink.pass.cpp index 488738eb526..4c5328048ce 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.read_symlink/read_symlink.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.read_symlink/read_symlink.pass.cpp @@ -13,11 +13,11 @@ // path read_symlink(const path& p); // path read_symlink(const path& p, error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp index fd9bac796df..dda88f0fa0a 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp @@ -14,16 +14,16 @@ // path proximate(const path& p, const path& base = current_path()) // path proximate(const path& p, const path& base, error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <string> #include <type_traits> #include <cassert> #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" TEST_SUITE(filesystem_proximate_path_test_suite) diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp index 3fb20524a25..0bb7d256bdc 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp @@ -13,11 +13,11 @@ // bool remove(const path& p); // bool remove(const path& p, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove_all/remove_all.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove_all/remove_all.pass.cpp index 523ce5f064f..de685b99abd 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove_all/remove_all.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove_all/remove_all.pass.cpp @@ -13,11 +13,11 @@ // uintmax_t remove_all(const path& p); // uintmax_t remove_all(const path& p, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.rename/rename.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.rename/rename.pass.cpp index 8373d67b890..85eafc35660 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.rename/rename.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.rename/rename.pass.cpp @@ -13,11 +13,11 @@ // void rename(const path& old_p, const path& new_p); // void rename(const path& old_p, const path& new_p, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.resize_file/resize_file.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.resize_file/resize_file.pass.cpp index 43ce5b060df..1f58331142d 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.resize_file/resize_file.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.resize_file/resize_file.pass.cpp @@ -13,11 +13,11 @@ // void resize_file(const path& p, uintmax_t new_size); // void resize_file(const path& p, uintmax_t new_size, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.space/space.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.space/space.pass.cpp index 7bb6c55fae3..f92f21acfd8 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.space/space.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.space/space.pass.cpp @@ -13,12 +13,12 @@ // space_info space(const path& p); // space_info space(const path& p, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <sys/statvfs.h> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status/status.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status/status.pass.cpp index 93444bb0007..2c7c673645a 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status/status.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status/status.pass.cpp @@ -13,11 +13,11 @@ // file_status status(const path& p); // file_status status(const path& p, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/status_known.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/status_known.pass.cpp index 93a251c8452..abde19e40ce 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/status_known.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/status_known.pass.cpp @@ -12,13 +12,13 @@ // bool status_known(file_status s) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.symlink_status/symlink_status.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.symlink_status/symlink_status.pass.cpp index a4d883dbaa2..88bef42f5e2 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.symlink_status/symlink_status.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.symlink_status/symlink_status.pass.cpp @@ -13,11 +13,11 @@ // file_status symlink_status(const path& p); // file_status symlink_status(const path& p, error_code& ec) noexcept; -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.temp_dir_path/temp_directory_path.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.temp_dir_path/temp_directory_path.pass.cpp index fbce591683c..daa3c2574e4 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.temp_dir_path/temp_directory_path.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.temp_dir_path/temp_directory_path.pass.cpp @@ -13,15 +13,15 @@ // path temp_directory_path(); // path temp_directory_path(error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <memory> #include <cstdlib> #include <cstring> #include <cassert> #include "test_macros.h" -#include "rapid-cxx-test.hpp" -#include "filesystem_test_helper.hpp" +#include "rapid-cxx-test.h" +#include "filesystem_test_helper.h" using namespace fs; diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp index 94a8e13bc08..30e3a84ec2a 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp @@ -13,7 +13,7 @@ // path weakly_canonical(const path& p); // path weakly_canonical(const path& p, error_code& ec); -#include "filesystem_include.hpp" +#include "filesystem_include.h" #include <type_traits> #include <vector> #include <iostream> @@ -21,8 +21,8 @@ #include "test_macros.h" #include "test_iterators.h" -#include "count_new.hpp" -#include "filesystem_test_helper.hpp" +#include "count_new.h" +#include "filesystem_test_helper.h" int main(int, char**) { diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/container.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/container.pass.cpp index 8e1d7d17aa5..0c43c15d014 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/container.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/container.pass.cpp @@ -14,7 +14,7 @@ #include <iterator> #include <vector> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/post.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/post.pass.cpp index 34d72edc31c..c6f93d22283 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/post.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/post.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/pre.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/pre.pass.cpp index 551c7be9212..a104d46b4dd 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/pre.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/pre.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op_astrk/test.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op_astrk/test.pass.cpp index 43b291a8ed7..22180f5a6f1 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op_astrk/test.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op_astrk/test.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.inserter/test.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.inserter/test.pass.cpp index eda9471b43d..192d5a15956 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.inserter/test.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.inserter/test.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/container.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/container.pass.cpp index 22c97bdb631..7fac5f31a99 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/container.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/container.pass.cpp @@ -14,7 +14,7 @@ #include <iterator> #include <list> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/post.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/post.pass.cpp index 78bd85fbc49..44a42713a2b 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/post.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/post.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <list> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/pre.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/pre.pass.cpp index 29c8f5552d2..ac58374ae41 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/pre.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/pre.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <list> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/lv_value.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/lv_value.pass.cpp index 9cb8be5c401..ceeacb4bf45 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/lv_value.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/lv_value.pass.cpp @@ -16,7 +16,7 @@ #include <iterator> #include <list> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op_astrk/test.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op_astrk/test.pass.cpp index ac7a1fbc6a3..1c2e62ebf3e 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op_astrk/test.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op_astrk/test.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <list> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.inserter/test.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.inserter/test.pass.cpp index 2ce42da8092..e7e09c9998f 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.inserter/test.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.inserter/test.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <list> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/test.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/test.pass.cpp index f84df4d0a27..c8650e400ee 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/test.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/test.pass.cpp @@ -14,7 +14,7 @@ #include <iterator> #include <vector> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/post.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/post.pass.cpp index d2d7311681b..e8a1780a40b 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/post.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/post.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/pre.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/pre.pass.cpp index a4bd716d47a..5f6a359d2ed 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/pre.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/pre.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/lv_value.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/lv_value.pass.cpp index 783bf918872..db7f1231fa3 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/lv_value.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/lv_value.pass.cpp @@ -17,7 +17,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op_astrk/test.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op_astrk/test.pass.cpp index c8e92404f5c..57080a26c8f 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op_astrk/test.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op_astrk/test.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/inserter/test.pass.cpp b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/inserter/test.pass.cpp index 7d499c04432..77916a496fc 100644 --- a/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/inserter/test.pass.cpp +++ b/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/inserter/test.pass.cpp @@ -15,7 +15,7 @@ #include <iterator> #include <vector> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/language.support/support.dynamic/destroying_delete_t_declaration.pass.cpp b/libcxx/test/std/language.support/support.dynamic/destroying_delete_t_declaration.pass.cpp index b0e42ecfd58..7eea4243928 100644 --- a/libcxx/test/std/language.support/support.dynamic/destroying_delete_t_declaration.pass.cpp +++ b/libcxx/test/std/language.support/support.dynamic/destroying_delete_t_declaration.pass.cpp @@ -24,7 +24,7 @@ #include <cassert> #include "test_macros.h" -#include "test_convertible.hpp" +#include "test_convertible.h" #ifdef __cpp_impl_destroying_delete # ifndef __cpp_lib_destroying_delete diff --git a/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/dtor.pass.cpp b/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/dtor.pass.cpp index 0f5f8d994a7..4296212dacb 100644 --- a/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/dtor.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/dtor.pass.cpp @@ -15,7 +15,7 @@ #include <locale> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" diff --git a/libcxx/test/std/localization/locale.stdcvt/codecvt_utf16.pass.cpp b/libcxx/test/std/localization/locale.stdcvt/codecvt_utf16.pass.cpp index 88892fb7641..bb69ef1d240 100644 --- a/libcxx/test/std/localization/locale.stdcvt/codecvt_utf16.pass.cpp +++ b/libcxx/test/std/localization/locale.stdcvt/codecvt_utf16.pass.cpp @@ -22,7 +22,7 @@ #include <cstdlib> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" diff --git a/libcxx/test/std/localization/locale.stdcvt/codecvt_utf8.pass.cpp b/libcxx/test/std/localization/locale.stdcvt/codecvt_utf8.pass.cpp index 30cb5571ba7..4fc4201ee17 100644 --- a/libcxx/test/std/localization/locale.stdcvt/codecvt_utf8.pass.cpp +++ b/libcxx/test/std/localization/locale.stdcvt/codecvt_utf8.pass.cpp @@ -22,7 +22,7 @@ #include <cstdlib> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" diff --git a/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ctor.pass.cpp b/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ctor.pass.cpp index f28abb934e0..f879afb7a2f 100644 --- a/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ctor.pass.cpp +++ b/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ctor.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" int main(int, char**) { diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/assign.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/assign.pass.cpp index 969c94542af..049e014b1b8 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/assign.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/assign.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include <new> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" #include "platform_support.h" // locale name macros diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/char_pointer.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/char_pointer.pass.cpp index c324f394c8b..76f8472ad47 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/char_pointer.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/char_pointer.pass.cpp @@ -20,7 +20,7 @@ #include <new> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "platform_support.h" // locale name macros #include "test_macros.h" diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/copy.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/copy.pass.cpp index 62aee240a7f..a0e476249e2 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/copy.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/copy.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include <new> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" #include "platform_support.h" // locale name macros diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/default.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/default.pass.cpp index 614996bb44e..b191aee30b4 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/default.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/default.pass.cpp @@ -17,7 +17,7 @@ #include "test_macros.h" #include "platform_support.h" // locale name macros -#include "count_new.hpp" +#include "count_new.h" void check(const std::locale& loc) { diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp index 7064f6fd2e8..69324cbc435 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp @@ -21,7 +21,7 @@ #include <new> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" #include "platform_support.h" // locale name macros diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp index cac3fa9c61e..0cc8af31162 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp @@ -16,7 +16,7 @@ #include <new> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" #include "platform_support.h" // locale name macros diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp index fb7d5953d69..e41d8746765 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp @@ -21,7 +21,7 @@ #include <new> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" #include "platform_support.h" // locale name macros diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp index d495036da73..219e934e0c8 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp @@ -21,7 +21,7 @@ #include <new> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" #include "platform_support.h" // locale name macros diff --git a/libcxx/test/std/localization/locales/locale/locale.cons/string.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.cons/string.pass.cpp index ee9ddbdca3e..f6d621b4737 100644 --- a/libcxx/test/std/localization/locales/locale/locale.cons/string.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.cons/string.pass.cpp @@ -17,7 +17,7 @@ #include <new> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" #include "platform_support.h" // locale name macros diff --git a/libcxx/test/std/localization/locales/locale/locale.members/combine.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.members/combine.pass.cpp index fc1f3d33bef..68c0438abb7 100644 --- a/libcxx/test/std/localization/locales/locale/locale.members/combine.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.members/combine.pass.cpp @@ -14,7 +14,7 @@ #include <stdexcept> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" diff --git a/libcxx/test/std/strings/basic.string.hash/enabled_hashes.pass.cpp b/libcxx/test/std/strings/basic.string.hash/enabled_hashes.pass.cpp index eba6659da63..41a6f1ea5ac 100644 --- a/libcxx/test/std/strings/basic.string.hash/enabled_hashes.pass.cpp +++ b/libcxx/test/std/strings/basic.string.hash/enabled_hashes.pass.cpp @@ -15,7 +15,7 @@ #include <string> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp b/libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp index 9e31d3e6f9e..82bd71b1d57 100644 --- a/libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp @@ -21,7 +21,7 @@ #include "test_macros.h" #include "test_allocator.h" #include "test_iterators.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class T, class Alloc = std::allocator<T>> using BStr = std::basic_string<T, std::char_traits<T>, Alloc>; diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/opeq.string_view.pointer.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/opeq.string_view.pointer.pass.cpp index e771bd328a9..c13b47e1fe9 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/opeq.string_view.pointer.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/opeq.string_view.pointer.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/opeq.string_view.string_view.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/opeq.string_view.string_view.pass.cpp index 259711e3c52..3a5eeb732de 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/opeq.string_view.string_view.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/opeq.string_view.string_view.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/opge.string_view.pointer.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/opge.string_view.pointer.pass.cpp index 5fa57eb394c..e7db1e8f00f 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/opge.string_view.pointer.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/opge.string_view.pointer.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/opge.string_view.string_view.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/opge.string_view.string_view.pass.cpp index d35bea575c8..778157b389b 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/opge.string_view.string_view.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/opge.string_view.string_view.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/opgt.string_view.pointer.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/opgt.string_view.pointer.pass.cpp index 80dcc7b497b..d39e902d796 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/opgt.string_view.pointer.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/opgt.string_view.pointer.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/opgt.string_view.string_view.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/opgt.string_view.string_view.pass.cpp index ec31d5c2c1d..2f88ef26af6 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/opgt.string_view.string_view.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/opgt.string_view.string_view.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/ople.string_view.pointer.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/ople.string_view.pointer.pass.cpp index 4f582239a83..3ad98b017f7 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/ople.string_view.pointer.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/ople.string_view.pointer.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/ople.string_view.string_view.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/ople.string_view.string_view.pass.cpp index b1c18612425..267550ad5ea 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/ople.string_view.string_view.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/ople.string_view.string_view.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/oplt.string_view.pointer.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/oplt.string_view.pointer.pass.cpp index 14bba2abfe6..2313c23e80f 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/oplt.string_view.pointer.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/oplt.string_view.pointer.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/oplt.string_view.string_view.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/oplt.string_view.string_view.pass.cpp index f44e373619a..cefdab02f25 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/oplt.string_view.string_view.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/oplt.string_view.string_view.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/opne.string_view.pointer.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/opne.string_view.pointer.pass.cpp index 6b8add83146..6bed63f2588 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/opne.string_view.pointer.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/opne.string_view.pointer.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.comparison/opne.string_view.string_view.pass.cpp b/libcxx/test/std/strings/string.view/string.view.comparison/opne.string_view.string_view.pass.cpp index 90d153335ff..fac4c0db574 100644 --- a/libcxx/test/std/strings/string.view/string.view.comparison/opne.string_view.string_view.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.comparison/opne.string_view.string_view.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.cons/from_literal.pass.cpp b/libcxx/test/std/strings/string.view/string.view.cons/from_literal.pass.cpp index bcd83da74c6..600ce72e01d 100644 --- a/libcxx/test/std/strings/string.view/string.view.cons/from_literal.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.cons/from_literal.pass.cpp @@ -18,7 +18,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template<typename CharT> size_t StrLen ( const CharT *s ) { diff --git a/libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp b/libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp index b95dca63dfd..9cea8c6c694 100644 --- a/libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp @@ -18,7 +18,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" // Overloads // --------------- diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_char_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_char_size.pass.cpp index 82173a93a88..15dff2e2bc6 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_char_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_char_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_char_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_char_size.pass.cpp index 4566adabfd3..1b050dd20d1 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_char_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_char_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size.pass.cpp index 17c3c5293f0..535860ec361 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size_size.pass.cpp index 707a7a96439..18fdda9000b 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_first_of_char_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_first_of_char_size.pass.cpp index d4916bec32f..b1bda4ea654 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_first_of_char_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_first_of_char_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_first_of_pointer_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_first_of_pointer_size.pass.cpp index 7e43109afdd..ee50e0c282f 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_first_of_pointer_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_first_of_pointer_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_first_of_pointer_size_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_first_of_pointer_size_size.pass.cpp index 165fb2362ae..5e35f4c9531 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_first_of_pointer_size_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_first_of_pointer_size_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_char_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_char_size.pass.cpp index 0b6e6cfb0fa..c4c7fa490de 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_char_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_char_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size.pass.cpp index fe17b779dd9..48574cd6106 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size_size.pass.cpp index 11a5c27e8da..3e46ed8d358 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_last_of_char_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_last_of_char_size.pass.cpp index fdcf3173671..0f8c6b02589 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_last_of_char_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_last_of_char_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_last_of_pointer_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_last_of_pointer_size.pass.cpp index 640f4837596..4b2e8c8c27f 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_last_of_pointer_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_last_of_pointer_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_last_of_pointer_size_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_last_of_pointer_size_size.pass.cpp index e82c935b5ff..318b211e198 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_last_of_pointer_size_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_last_of_pointer_size_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_pointer_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_pointer_size.pass.cpp index 3f4fee54ef4..67c01ec1e0f 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_pointer_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_pointer_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_pointer_size_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_pointer_size_size.pass.cpp index 74caa6fea7b..dd5536b4798 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_pointer_size_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_pointer_size_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/find_string_view_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/find_string_view_size.pass.cpp index ed3b7c11c02..6f4aa90a1a4 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/find_string_view_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/find_string_view_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/rfind_char_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/rfind_char_size.pass.cpp index 959bb05f871..e8229e1024e 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/rfind_char_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/rfind_char_size.pass.cpp @@ -13,7 +13,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/rfind_pointer_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/rfind_pointer_size.pass.cpp index 6010083ab14..691fab4d5d0 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/rfind_pointer_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/rfind_pointer_size.pass.cpp @@ -13,7 +13,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/rfind_pointer_size_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/rfind_pointer_size_size.pass.cpp index c3ca97e7ff9..39a295dea80 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/rfind_pointer_size_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/rfind_pointer_size_size.pass.cpp @@ -13,7 +13,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.find/rfind_string_view_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.find/rfind_string_view_size.pass.cpp index c4ceef33136..7607bcf768b 100644 --- a/libcxx/test/std/strings/string.view/string.view.find/rfind_string_view_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.find/rfind_string_view_size.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" template <class S> void diff --git a/libcxx/test/std/strings/string.view/string.view.hash/enabled_hashes.pass.cpp b/libcxx/test/std/strings/string.view/string.view.hash/enabled_hashes.pass.cpp index 8363b003e72..64fa807903a 100644 --- a/libcxx/test/std/strings/string.view/string.view.hash/enabled_hashes.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.hash/enabled_hashes.pass.cpp @@ -15,7 +15,7 @@ #include <string_view> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/strings/string.view/string.view.ops/compare.pointer.pass.cpp b/libcxx/test/std/strings/string.view/string.view.ops/compare.pointer.pass.cpp index cdddea1db97..a48186b0153 100644 --- a/libcxx/test/std/strings/string.view/string.view.ops/compare.pointer.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.ops/compare.pointer.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } diff --git a/libcxx/test/std/strings/string.view/string.view.ops/compare.pointer_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.ops/compare.pointer_size.pass.cpp index 3d401484db3..a3b7b6cc0b0 100644 --- a/libcxx/test/std/strings/string.view/string.view.ops/compare.pointer_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.ops/compare.pointer_size.pass.cpp @@ -15,7 +15,7 @@ #include <stdexcept> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } diff --git a/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv.pass.cpp b/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv.pass.cpp index 1bd26b36644..4088e2fe092 100644 --- a/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv.pass.cpp @@ -15,7 +15,7 @@ #include <stdexcept> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } diff --git a/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv_pointer_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv_pointer_size.pass.cpp index 73ef1ea8d82..1409f088f14 100644 --- a/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv_pointer_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv_pointer_size.pass.cpp @@ -16,7 +16,7 @@ #include <stdexcept> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } diff --git a/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv_size_size.pass.cpp b/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv_size_size.pass.cpp index f6a21d0f141..ef81db68d37 100644 --- a/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv_size_size.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.ops/compare.size_size_sv_size_size.pass.cpp @@ -16,7 +16,7 @@ #include <stdexcept> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } diff --git a/libcxx/test/std/strings/string.view/string.view.ops/compare.sv.pass.cpp b/libcxx/test/std/strings/string.view/string.view.ops/compare.sv.pass.cpp index 9c27f267459..72e8dee5024 100644 --- a/libcxx/test/std/strings/string.view/string.view.ops/compare.sv.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.ops/compare.sv.pass.cpp @@ -14,7 +14,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } diff --git a/libcxx/test/std/strings/string.view/string.view.template/ends_with.char.pass.cpp b/libcxx/test/std/strings/string.view/string.view.template/ends_with.char.pass.cpp index c0373307427..6f23127a382 100644 --- a/libcxx/test/std/strings/string.view/string.view.template/ends_with.char.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.template/ends_with.char.pass.cpp @@ -15,7 +15,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int main(int, char**) { diff --git a/libcxx/test/std/strings/string.view/string.view.template/ends_with.ptr.pass.cpp b/libcxx/test/std/strings/string.view/string.view.template/ends_with.ptr.pass.cpp index 64caf5cc0d5..511fad2ac84 100644 --- a/libcxx/test/std/strings/string.view/string.view.template/ends_with.ptr.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.template/ends_with.ptr.pass.cpp @@ -15,7 +15,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int main(int, char**) { diff --git a/libcxx/test/std/strings/string.view/string.view.template/ends_with.string_view.pass.cpp b/libcxx/test/std/strings/string.view/string.view.template/ends_with.string_view.pass.cpp index b5f67f8ddd1..405214fb867 100644 --- a/libcxx/test/std/strings/string.view/string.view.template/ends_with.string_view.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.template/ends_with.string_view.pass.cpp @@ -15,7 +15,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int main(int, char**) { diff --git a/libcxx/test/std/strings/string.view/string.view.template/starts_with.char.pass.cpp b/libcxx/test/std/strings/string.view/string.view.template/starts_with.char.pass.cpp index d43944fdec7..0cf066322cc 100644 --- a/libcxx/test/std/strings/string.view/string.view.template/starts_with.char.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.template/starts_with.char.pass.cpp @@ -15,7 +15,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int main(int, char**) { diff --git a/libcxx/test/std/strings/string.view/string.view.template/starts_with.ptr.pass.cpp b/libcxx/test/std/strings/string.view/string.view.template/starts_with.ptr.pass.cpp index ce651ec57e0..3ec97468ebb 100644 --- a/libcxx/test/std/strings/string.view/string.view.template/starts_with.ptr.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.template/starts_with.ptr.pass.cpp @@ -15,7 +15,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int main(int, char**) { diff --git a/libcxx/test/std/strings/string.view/string.view.template/starts_with.string_view.pass.cpp b/libcxx/test/std/strings/string.view/string.view.template/starts_with.string_view.pass.cpp index 3d184bae0eb..82624271bbd 100644 --- a/libcxx/test/std/strings/string.view/string.view.template/starts_with.string_view.pass.cpp +++ b/libcxx/test/std/strings/string.view/string.view.template/starts_with.string_view.pass.cpp @@ -15,7 +15,7 @@ #include <cassert> #include "test_macros.h" -#include "constexpr_char_traits.hpp" +#include "constexpr_char_traits.h" int main(int, char**) { diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_assign.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_assign.pass.cpp index 8145a405b5e..354f17d0708 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_assign.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_assign.pass.cpp @@ -18,7 +18,7 @@ #include <shared_mutex> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_ctor.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_ctor.pass.cpp index ee5b55d63d9..e413f625c6d 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_ctor.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_ctor.pass.cpp @@ -18,7 +18,7 @@ #include <shared_mutex> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_adopt_lock.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_adopt_lock.pass.cpp index 573fbfde721..6d95185eef0 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_adopt_lock.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_adopt_lock.pass.cpp @@ -18,7 +18,7 @@ #include <shared_mutex> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_defer_lock.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_defer_lock.pass.cpp index 053b4dd423c..f6bb8472c7d 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_defer_lock.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_defer_lock.pass.cpp @@ -18,7 +18,7 @@ #include <shared_mutex> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_assign.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_assign.pass.cpp index 3fc00b5906a..529baaedd21 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_assign.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_assign.pass.cpp @@ -16,7 +16,7 @@ #include <mutex> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_ctor.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_ctor.pass.cpp index f3440a98e30..6f033dbbb69 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_ctor.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_ctor.pass.cpp @@ -16,7 +16,7 @@ #include <mutex> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_adopt_lock.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_adopt_lock.pass.cpp index e599ca59f57..9d723aa71b0 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_adopt_lock.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_adopt_lock.pass.cpp @@ -16,7 +16,7 @@ #include <mutex> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_defer_lock.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_defer_lock.pass.cpp index 1224a8c77ec..a16dcbe4f33 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_defer_lock.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_defer_lock.pass.cpp @@ -16,7 +16,7 @@ #include <mutex> #include <cassert> -#include "nasty_containers.hpp" +#include "nasty_containers.h" #include "test_macros.h" diff --git a/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/enabled_hashes.pass.cpp b/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/enabled_hashes.pass.cpp index 48cb83b546d..624d05c9f0d 100644 --- a/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/enabled_hashes.pass.cpp +++ b/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/enabled_hashes.pass.cpp @@ -16,7 +16,7 @@ #include <thread> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair.pass.cpp b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair.pass.cpp index 9748d66fb45..ae2ed0d97a4 100644 --- a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair.pass.cpp +++ b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair.pass.cpp @@ -22,8 +22,8 @@ #include <tuple> #include <cassert> #include <cstdlib> -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_const_lvalue_pair.pass.cpp b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_const_lvalue_pair.pass.cpp index 103f8f41327..4fc4794918c 100644 --- a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_const_lvalue_pair.pass.cpp +++ b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_const_lvalue_pair.pass.cpp @@ -22,8 +22,8 @@ #include <tuple> #include <cassert> #include <cstdlib> -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_piecewise.pass.cpp b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_piecewise.pass.cpp index d8f5e7c7879..2ada281f549 100644 --- a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_piecewise.pass.cpp +++ b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_piecewise.pass.cpp @@ -23,8 +23,8 @@ #include <tuple> #include <cassert> #include <cstdlib> -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_rvalue.pass.cpp b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_rvalue.pass.cpp index 5632e2112d9..ed8785bcf33 100644 --- a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_rvalue.pass.cpp +++ b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_rvalue.pass.cpp @@ -22,8 +22,8 @@ #include <tuple> #include <cassert> #include <cstdlib> -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_values.pass.cpp b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_values.pass.cpp index 9ba2d155d2a..3a4c236bf75 100644 --- a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_values.pass.cpp +++ b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_values.pass.cpp @@ -22,8 +22,8 @@ #include <tuple> #include <cassert> #include <cstdlib> -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_type.pass.cpp b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_type.pass.cpp index 2dee95d34da..5a919d3c717 100644 --- a/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_type.pass.cpp +++ b/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_type.pass.cpp @@ -22,8 +22,8 @@ #include <tuple> #include <cassert> #include <cstdlib> -#include "uses_alloc_types.hpp" -#include "controlled_allocators.hpp" +#include "uses_alloc_types.h" +#include "controlled_allocators.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/any/any.class/any.assign/copy.pass.cpp b/libcxx/test/std/utilities/any/any.class/any.assign/copy.pass.cpp index d818400c5de..7f44afec7fd 100644 --- a/libcxx/test/std/utilities/any/any.class/any.assign/copy.pass.cpp +++ b/libcxx/test/std/utilities/any/any.class/any.assign/copy.pass.cpp @@ -20,7 +20,7 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" using std::any; diff --git a/libcxx/test/std/utilities/any/any.class/any.assign/value.pass.cpp b/libcxx/test/std/utilities/any/any.class/any.assign/value.pass.cpp index 8ca93df34ad..5ac9b7985d5 100644 --- a/libcxx/test/std/utilities/any/any.class/any.assign/value.pass.cpp +++ b/libcxx/test/std/utilities/any/any.class/any.assign/value.pass.cpp @@ -21,7 +21,7 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" using std::any; diff --git a/libcxx/test/std/utilities/any/any.class/any.cons/copy.pass.cpp b/libcxx/test/std/utilities/any/any.class/any.cons/copy.pass.cpp index fbb5f181a24..de299018928 100644 --- a/libcxx/test/std/utilities/any/any.class/any.cons/copy.pass.cpp +++ b/libcxx/test/std/utilities/any/any.class/any.cons/copy.pass.cpp @@ -18,7 +18,7 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" using std::any; diff --git a/libcxx/test/std/utilities/any/any.class/any.cons/default.pass.cpp b/libcxx/test/std/utilities/any/any.class/any.cons/default.pass.cpp index 6cd7b8937d2..159bf75e2be 100644 --- a/libcxx/test/std/utilities/any/any.class/any.cons/default.pass.cpp +++ b/libcxx/test/std/utilities/any/any.class/any.cons/default.pass.cpp @@ -18,7 +18,7 @@ #include "test_macros.h" #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/any/any.class/any.cons/in_place_type.pass.cpp b/libcxx/test/std/utilities/any/any.class/any.cons/in_place_type.pass.cpp index bfe86e800e9..329322d2d67 100644 --- a/libcxx/test/std/utilities/any/any.class/any.cons/in_place_type.pass.cpp +++ b/libcxx/test/std/utilities/any/any.class/any.cons/in_place_type.pass.cpp @@ -27,9 +27,9 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" -#include "test_convertible.hpp" +#include "test_convertible.h" using std::any; using std::any_cast; diff --git a/libcxx/test/std/utilities/any/any.class/any.cons/move.pass.cpp b/libcxx/test/std/utilities/any/any.class/any.cons/move.pass.cpp index 3c0780c0a3f..ac88e0f78df 100644 --- a/libcxx/test/std/utilities/any/any.class/any.cons/move.pass.cpp +++ b/libcxx/test/std/utilities/any/any.class/any.cons/move.pass.cpp @@ -20,7 +20,7 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" using std::any; diff --git a/libcxx/test/std/utilities/any/any.class/any.cons/value.pass.cpp b/libcxx/test/std/utilities/any/any.class/any.cons/value.pass.cpp index e39c7307ecb..ecd3bd7616b 100644 --- a/libcxx/test/std/utilities/any/any.class/any.cons/value.pass.cpp +++ b/libcxx/test/std/utilities/any/any.class/any.cons/value.pass.cpp @@ -25,7 +25,7 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" using std::any; diff --git a/libcxx/test/std/utilities/any/any.class/any.modifiers/emplace.pass.cpp b/libcxx/test/std/utilities/any/any.class/any.modifiers/emplace.pass.cpp index 8a5e433786d..e2b232b0819 100644 --- a/libcxx/test/std/utilities/any/any.class/any.modifiers/emplace.pass.cpp +++ b/libcxx/test/std/utilities/any/any.class/any.modifiers/emplace.pass.cpp @@ -20,7 +20,7 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" using std::any; diff --git a/libcxx/test/std/utilities/any/any.nonmembers/any.cast/any_cast_reference.pass.cpp b/libcxx/test/std/utilities/any/any.nonmembers/any.cast/any_cast_reference.pass.cpp index 12164448002..faaca948a61 100644 --- a/libcxx/test/std/utilities/any/any.nonmembers/any.cast/any_cast_reference.pass.cpp +++ b/libcxx/test/std/utilities/any/any.nonmembers/any.cast/any_cast_reference.pass.cpp @@ -26,7 +26,7 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" using std::any; diff --git a/libcxx/test/std/utilities/any/any.nonmembers/make_any.pass.cpp b/libcxx/test/std/utilities/any/any.nonmembers/make_any.pass.cpp index 9c5dda2066c..5e319efdab0 100644 --- a/libcxx/test/std/utilities/any/any.nonmembers/make_any.pass.cpp +++ b/libcxx/test/std/utilities/any/any.nonmembers/make_any.pass.cpp @@ -20,7 +20,7 @@ #include <cassert> #include "any_helpers.h" -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" using std::any; diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/swap.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/swap.pass.cpp index ec25bdf7802..cf3477ff554 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/swap.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/swap.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" class A { diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F.pass.cpp index fe5d24806b7..5944f5900ee 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" class A { diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_assign.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_assign.pass.cpp index f70a2087cc2..26178551edb 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_assign.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_assign.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" class A { diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp index bcc93adad10..f21f8d4cc67 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp @@ -19,7 +19,7 @@ #include "test_macros.h" #include "min_allocator.h" #include "test_allocator.h" -#include "count_new.hpp" +#include "count_new.h" #include "../function_types.h" diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_function.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_function.pass.cpp index 3f3b5c696d7..138f3d9d8dc 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_function.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_function.pass.cpp @@ -20,7 +20,7 @@ #include "test_macros.h" #include "min_allocator.h" #include "test_allocator.h" -#include "count_new.hpp" +#include "count_new.h" #include "../function_types.h" class DummyClass {}; diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_rfunction.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_rfunction.pass.cpp index 064046d0b2d..46f33be68fe 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_rfunction.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_rfunction.pass.cpp @@ -23,7 +23,7 @@ #include "test_macros.h" #include "min_allocator.h" -#include "count_new.hpp" +#include "count_new.h" class A { diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_assign.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_assign.pass.cpp index d7b11ae1bfd..d97b699ea96 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_assign.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_assign.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" class A { int data_[10]; diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp index dbbde5ce473..b756e7ecef9 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" class A { diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/nullptr_t_assign.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/nullptr_t_assign.pass.cpp index 00ab664f7f0..16d9f05622d 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/nullptr_t_assign.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/nullptr_t_assign.pass.cpp @@ -15,7 +15,7 @@ #include <functional> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/swap.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/swap.pass.cpp index 8c8f3f53db6..f034eb71e4d 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/swap.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/swap.pass.cpp @@ -15,7 +15,7 @@ #include <functional> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp b/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp index 8e5e7c30e1e..8761357eb82 100644 --- a/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp @@ -15,7 +15,7 @@ #include <functional> #include <cassert> -#include "counting_predicates.hpp" +#include "counting_predicates.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/function.objects/unord.hash/enabled_hashes.pass.cpp b/libcxx/test/std/utilities/function.objects/unord.hash/enabled_hashes.pass.cpp index c8711546764..8f29b2a4f2e 100644 --- a/libcxx/test/std/utilities/function.objects/unord.hash/enabled_hashes.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/unord.hash/enabled_hashes.pass.cpp @@ -15,7 +15,7 @@ #include <functional> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp b/libcxx/test/std/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp index fac99d173b0..cdf491bf586 100644 --- a/libcxx/test/std/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp +++ b/libcxx/test/std/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp @@ -16,7 +16,7 @@ #include <cstddef> // for std::max_align_t #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" #ifdef TEST_HAS_NO_ALIGNED_ALLOCATION diff --git a/libcxx/test/std/utilities/memory/default.allocator/allocator.members/construct.pass.cpp b/libcxx/test/std/utilities/memory/default.allocator/allocator.members/construct.pass.cpp index 96954e04b08..328603b717f 100644 --- a/libcxx/test/std/utilities/memory/default.allocator/allocator.members/construct.pass.cpp +++ b/libcxx/test/std/utilities/memory/default.allocator/allocator.members/construct.pass.cpp @@ -15,7 +15,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" int A_constructed = 0; diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp index fe7567eebc1..8dd984dcdde 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp @@ -25,7 +25,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" struct T : public std::enable_shared_from_this<T> diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/enabled_hash.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/enabled_hash.pass.cpp index 677354e19ed..a5a1a215353 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/enabled_hash.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/enabled_hash.pass.cpp @@ -15,7 +15,7 @@ #include <memory> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_shared_ptr.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_shared_ptr.pass.cpp index 0fcf27fb929..9b695cf54ce 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_shared_ptr.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_shared_ptr.pass.cpp @@ -20,7 +20,7 @@ #include <cassert> #if TEST_STD_VER >= 11 -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_unique_ptr.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_unique_ptr.pass.cpp index 5cae6ca7d45..5d25bd78e13 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_unique_ptr.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_unique_ptr.pass.cpp @@ -22,7 +22,7 @@ #include "test_macros.h" #if TEST_STD_VER >= 11 -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "deleter_types.h" #include "min_allocator.h" diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp index 6b12d7564f4..5e9e06f7d79 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" struct B { diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp index 7d2628d60dc..795717fbf23 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp @@ -21,7 +21,7 @@ #include <cstdlib> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" #include "deleter_types.h" diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp index 9fa32714bc1..4a5ae751bc4 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp @@ -20,7 +20,7 @@ #include <new> #include <cstdlib> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" #include "deleter_types.h" diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp index b7b5d145093..fd33ce9cb9e 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp @@ -19,7 +19,7 @@ #include <cstdlib> #include <cassert> -#include "count_new.hpp" +#include "count_new.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp index 6fd812fca0a..41e64c6b431 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp @@ -18,7 +18,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" struct B { diff --git a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp index aed060e5790..ebb1cdce6f9 100644 --- a/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp +++ b/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "count_new.hpp" +#include "count_new.h" #if TEST_STD_VER >= 11 #define DELETE_FUNCTION = delete diff --git a/libcxx/test/std/utilities/optional/optional.hash/enabled_hash.pass.cpp b/libcxx/test/std/utilities/optional/optional.hash/enabled_hash.pass.cpp index fc84e6dc92a..212ffec4fc6 100644 --- a/libcxx/test/std/utilities/optional/optional.hash/enabled_hash.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.hash/enabled_hash.pass.cpp @@ -15,7 +15,7 @@ #include <optional> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/optional/optional.hash/hash.pass.cpp b/libcxx/test/std/utilities/optional/optional.hash/hash.pass.cpp index d4f04164f60..9645e31bb6d 100644 --- a/libcxx/test/std/utilities/optional/optional.hash/hash.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.hash/hash.pass.cpp @@ -16,7 +16,7 @@ #include <memory> #include <cassert> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/assign_value.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/assign_value.pass.cpp index 3dd28ace26f..d3953af8264 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/assign_value.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/assign_value.pass.cpp @@ -17,7 +17,7 @@ #include <memory> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/const_optional_U.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/const_optional_U.pass.cpp index 6ccaafa6d6f..cf44921fe57 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/const_optional_U.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/const_optional_U.pass.cpp @@ -18,7 +18,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/copy.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/copy.pass.cpp index 5900e60461e..a5ff10201c9 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/copy.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/copy.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/emplace.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/emplace.pass.cpp index c5cebc5420b..d05f40d1985 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/emplace.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/emplace.pass.cpp @@ -17,7 +17,7 @@ #include <memory> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/move.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/move.pass.cpp index c862c5f0efd..bdaf6ffceb5 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/move.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/move.pass.cpp @@ -19,7 +19,7 @@ #include <utility> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/nullopt_t.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/nullopt_t.pass.cpp index af582d73205..c0beecc62cb 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/nullopt_t.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/nullopt_t.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; using std::nullopt_t; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/optional_U.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/optional_U.pass.cpp index cabaa070b27..2239acaf629 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/optional_U.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/optional_U.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/U.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/U.pass.cpp index b5966dfa55a..ce0b6e5878f 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/U.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/U.pass.cpp @@ -20,8 +20,8 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/const_T.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/const_T.pass.cpp index f20a840b0b3..018abd99033 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/const_T.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/const_T.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/copy.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/copy.pass.cpp index e6793cd4794..db38cbfbfa9 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/copy.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/copy.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/default.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/default.pass.cpp index 3dd38da9d57..4b4d64e24ab 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/default.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/default.pass.cpp @@ -16,7 +16,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/empty_in_place_t_does_not_clobber.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/empty_in_place_t_does_not_clobber.pass.cpp index 84db7ea024f..7936390b459 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/empty_in_place_t_does_not_clobber.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/empty_in_place_t_does_not_clobber.pass.cpp @@ -20,7 +20,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/move.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/move.pass.cpp index 4c58d45b5af..fc2c46123f2 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/move.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/move.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/nullopt_t.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/nullopt_t.pass.cpp index 12b19a72caf..30214fb01cb 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/nullopt_t.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/nullopt_t.pass.cpp @@ -15,7 +15,7 @@ #include <type_traits> #include <cassert> -#include "archetypes.hpp" +#include "archetypes.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/rvalue_T.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/rvalue_T.pass.cpp index f2e7882e8ee..3d9e942af39 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/rvalue_T.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/rvalue_T.pass.cpp @@ -19,7 +19,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/optional.object.swap/swap.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/optional.object.swap/swap.pass.cpp index e881a0c6286..15fb2b057aa 100644 --- a/libcxx/test/std/utilities/optional/optional.object/optional.object.swap/swap.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/optional.object.swap/swap.pass.cpp @@ -18,7 +18,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/optional/optional.object/special_members.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/special_members.pass.cpp index 2449801be18..6a5fb920182 100644 --- a/libcxx/test/std/utilities/optional/optional.object/special_members.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/special_members.pass.cpp @@ -16,7 +16,7 @@ #include <optional> #include <type_traits> -#include "archetypes.hpp" +#include "archetypes.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/optional/optional.object/triviality.pass.cpp b/libcxx/test/std/utilities/optional/optional.object/triviality.pass.cpp index 3af60a6bf9f..1aff9dff579 100644 --- a/libcxx/test/std/utilities/optional/optional.object/triviality.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.object/triviality.pass.cpp @@ -22,7 +22,7 @@ #include <optional> #include <type_traits> -#include "archetypes.hpp" +#include "archetypes.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp b/libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp index 1a548e8cc2e..4fca6e0479c 100644 --- a/libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp @@ -17,7 +17,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" using std::optional; diff --git a/libcxx/test/std/utilities/template.bitset/bitset.hash/enabled_hash.pass.cpp b/libcxx/test/std/utilities/template.bitset/bitset.hash/enabled_hash.pass.cpp index 5adc060c8ae..621caa411b7 100644 --- a/libcxx/test/std/utilities/template.bitset/bitset.hash/enabled_hash.pass.cpp +++ b/libcxx/test/std/utilities/template.bitset/bitset.hash/enabled_hash.pass.cpp @@ -15,7 +15,7 @@ #include <bitset> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/UTypes.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/UTypes.pass.cpp index 916255c967a..6a06afab313 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/UTypes.pass.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/UTypes.pass.cpp @@ -20,7 +20,7 @@ #include <type_traits> #include "test_macros.h" -#include "test_convertible.hpp" +#include "test_convertible.h" #include "MoveOnly.h" #if TEST_STD_VER > 11 diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/deduct.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/deduct.pass.cpp index ddb61a03651..4944f64ddf0 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/deduct.pass.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/deduct.pass.cpp @@ -26,7 +26,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" // Overloads diff --git a/libcxx/test/std/utilities/type.index/type.index.hash/enabled_hash.pass.cpp b/libcxx/test/std/utilities/type.index/type.index.hash/enabled_hash.pass.cpp index e663071e71e..d8c9ce048ae 100644 --- a/libcxx/test/std/utilities/type.index/type.index.hash/enabled_hash.pass.cpp +++ b/libcxx/test/std/utilities/type.index/type.index.hash/enabled_hash.pass.cpp @@ -15,7 +15,7 @@ #include <typeindex> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/type.index/type.index.synopsis/hash_type_index.pass.cpp b/libcxx/test/std/utilities/type.index/type.index.synopsis/hash_type_index.pass.cpp index e8ce292cca0..605aa991a0d 100644 --- a/libcxx/test/std/utilities/type.index/type.index.synopsis/hash_type_index.pass.cpp +++ b/libcxx/test/std/utilities/type.index/type.index.synopsis/hash_type_index.pass.cpp @@ -19,7 +19,7 @@ #include "test_macros.h" #if TEST_STD_VER >= 11 -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #endif int main(int, char**) diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/U_V.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/U_V.pass.cpp index dc4cd317648..062ef62fd88 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/U_V.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/U_V.pass.cpp @@ -19,8 +19,8 @@ #include <memory> #include <cassert> -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" #include "test_macros.h" using namespace ImplicitTypes; // Get implicitly archetypes diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_const_pair_U_V.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_const_pair_U_V.pass.cpp index 834d73dd7f5..078d424a1ba 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_const_pair_U_V.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_const_pair_U_V.pass.cpp @@ -17,7 +17,7 @@ #include "test_macros.h" #if TEST_STD_VER >= 11 -#include "archetypes.hpp" +#include "archetypes.h" #endif int main(int, char**) diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_rv_pair_U_V.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_rv_pair_U_V.pass.cpp index 64e3adb56b7..17d602012c4 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_rv_pair_U_V.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/assign_rv_pair_U_V.pass.cpp @@ -17,7 +17,7 @@ #include <utility> #include <memory> #include <cassert> -#include <archetypes.hpp> +#include <archetypes.h> #include "test_macros.h" diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/const_first_const_second.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/const_first_const_second.pass.cpp index 53c6cc8a6f2..621ab55aee4 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/const_first_const_second.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/const_first_const_second.pass.cpp @@ -17,8 +17,8 @@ #include <utility> #include <cassert> -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" #include "test_macros.h" using namespace ImplicitTypes; // Get implicitly archetypes diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/const_pair_U_V.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/const_pair_U_V.pass.cpp index 5a592c35cbf..6d9e81ce83e 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/const_pair_U_V.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/const_pair_U_V.pass.cpp @@ -17,8 +17,8 @@ #include <utility> #include <cassert> -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" #include "test_macros.h" using namespace ImplicitTypes; // Get implicitly archetypes diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/default.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/default.pass.cpp index dc1f37b666b..de3730ef3cb 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/default.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/default.pass.cpp @@ -26,7 +26,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/implicit_deduction_guides.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/implicit_deduction_guides.pass.cpp index ca5a728844e..4e3559f144d 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/implicit_deduction_guides.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/implicit_deduction_guides.pass.cpp @@ -26,7 +26,7 @@ #include <cassert> #include "test_macros.h" -#include "archetypes.hpp" +#include "archetypes.h" // Overloads diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/rv_pair_U_V.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/rv_pair_U_V.pass.cpp index 3d12398d6c9..a3f2464b440 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/rv_pair_U_V.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/rv_pair_U_V.pass.cpp @@ -18,8 +18,8 @@ #include <memory> #include <cassert> -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" #include "test_macros.h" using namespace ImplicitTypes; // Get implicitly archetypes diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.pair/special_member_generation_test.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.pair/special_member_generation_test.pass.cpp index b1082ccfa65..449a27cd3db 100644 --- a/libcxx/test/std/utilities/utility/pairs/pairs.pair/special_member_generation_test.pass.cpp +++ b/libcxx/test/std/utilities/utility/pairs/pairs.pair/special_member_generation_test.pass.cpp @@ -24,7 +24,7 @@ #include <string> #include <tuple> -#include "archetypes.hpp" +#include "archetypes.h" #include "test_macros.h" using namespace ImplicitTypes; // Get implicitly archetypes diff --git a/libcxx/test/std/utilities/variant/variant.get/get_if_index.pass.cpp b/libcxx/test/std/utilities/variant/variant.get/get_if_index.pass.cpp index 5210c5f9d84..827f7a23e95 100644 --- a/libcxx/test/std/utilities/variant/variant.get/get_if_index.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.get/get_if_index.pass.cpp @@ -19,7 +19,7 @@ // get_if(const variant<Types...>* v) noexcept; #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" #include <cassert> #include <memory> #include <variant> diff --git a/libcxx/test/std/utilities/variant/variant.get/get_if_type.pass.cpp b/libcxx/test/std/utilities/variant/variant.get/get_if_type.pass.cpp index e7c9671f95c..341d53906b6 100644 --- a/libcxx/test/std/utilities/variant/variant.get/get_if_type.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.get/get_if_type.pass.cpp @@ -18,7 +18,7 @@ // noexcept; #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" #include <cassert> #include <variant> diff --git a/libcxx/test/std/utilities/variant/variant.get/get_index.pass.cpp b/libcxx/test/std/utilities/variant/variant.get/get_index.pass.cpp index d8711c76366..16e2f209ce8 100644 --- a/libcxx/test/std/utilities/variant/variant.get/get_index.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.get/get_index.pass.cpp @@ -28,7 +28,7 @@ #include "test_macros.h" #include "test_workarounds.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" #include <cassert> #include <type_traits> #include <utility> diff --git a/libcxx/test/std/utilities/variant/variant.get/get_type.pass.cpp b/libcxx/test/std/utilities/variant/variant.get/get_type.pass.cpp index 5272c0981a8..333f3d91038 100644 --- a/libcxx/test/std/utilities/variant/variant.get/get_type.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.get/get_type.pass.cpp @@ -22,7 +22,7 @@ #include "test_macros.h" #include "test_workarounds.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" #include <cassert> #include <type_traits> #include <utility> diff --git a/libcxx/test/std/utilities/variant/variant.hash/enabled_hash.pass.cpp b/libcxx/test/std/utilities/variant/variant.hash/enabled_hash.pass.cpp index 2649dd6c4eb..f5e0fbe1171 100644 --- a/libcxx/test/std/utilities/variant/variant.hash/enabled_hash.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.hash/enabled_hash.pass.cpp @@ -15,7 +15,7 @@ #include <variant> -#include "poisoned_hash_helper.hpp" +#include "poisoned_hash_helper.h" #include "test_macros.h" diff --git a/libcxx/test/std/utilities/variant/variant.hash/hash.pass.cpp b/libcxx/test/std/utilities/variant/variant.hash/hash.pass.cpp index edda8d21a24..a4255188ed4 100644 --- a/libcxx/test/std/utilities/variant/variant.hash/hash.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.hash/hash.pass.cpp @@ -19,8 +19,8 @@ #include <variant> #include "test_macros.h" -#include "variant_test_helpers.hpp" -#include "poisoned_hash_helper.hpp" +#include "variant_test_helpers.h" +#include "poisoned_hash_helper.h" #ifndef TEST_HAS_NO_EXCEPTIONS namespace std { diff --git a/libcxx/test/std/utilities/variant/variant.helpers/variant_alternative.pass.cpp b/libcxx/test/std/utilities/variant/variant.helpers/variant_alternative.pass.cpp index 7db07b6b0d4..e8b6302c199 100644 --- a/libcxx/test/std/utilities/variant/variant.helpers/variant_alternative.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.helpers/variant_alternative.pass.cpp @@ -26,7 +26,7 @@ #include <variant> #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" template <class V, size_t I, class E> void test() { static_assert( diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.assign/T.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.assign/T.pass.cpp index ab4ea7e4cf2..3483298eda7 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.assign/T.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.assign/T.pass.cpp @@ -25,7 +25,7 @@ #include <memory> #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" namespace MetaHelpers { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.assign/conv.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.assign/conv.pass.cpp index b16cf2cdd58..a1d9122a8c3 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.assign/conv.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.assign/conv.pass.cpp @@ -20,7 +20,7 @@ #include <string> #include <memory> -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.assign/move.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.assign/move.pass.cpp index 990e10c0f09..7ec76ab4ccc 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.assign/move.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.assign/move.pass.cpp @@ -29,7 +29,7 @@ #include <variant> #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" struct NoCopy { NoCopy(const NoCopy &) = delete; diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/T.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/T.pass.cpp index 42a31f33450..0824761b092 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/T.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/T.pass.cpp @@ -23,7 +23,7 @@ #include <memory> #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" struct Dummy { Dummy() = default; diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/conv.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/conv.pass.cpp index 47991233a56..c0b1560a8f6 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/conv.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/conv.pass.cpp @@ -19,7 +19,7 @@ #include <string> #include <memory> -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/default.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/default.pass.cpp index 579ae4d9fe2..a26abf57cce 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/default.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/default.pass.cpp @@ -22,7 +22,7 @@ #include <variant> #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" struct NonDefaultConstructible { constexpr NonDefaultConstructible(int) {} diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_args.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_args.pass.cpp index ac736fb3a44..f404c0ba726 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_args.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_args.pass.cpp @@ -23,7 +23,7 @@ #include <type_traits> #include <variant> -#include "test_convertible.hpp" +#include "test_convertible.h" #include "test_macros.h" void test_ctor_sfinae() { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_init_list_args.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_init_list_args.pass.cpp index 179b6635309..eb8c7daa2fa 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_init_list_args.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_init_list_args.pass.cpp @@ -23,7 +23,7 @@ #include <type_traits> #include <variant> -#include "test_convertible.hpp" +#include "test_convertible.h" #include "test_macros.h" struct InitList { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_args.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_args.pass.cpp index 430ddca3c69..9716d05f678 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_args.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_args.pass.cpp @@ -22,7 +22,7 @@ #include <type_traits> #include <variant> -#include "test_convertible.hpp" +#include "test_convertible.h" #include "test_macros.h" void test_ctor_sfinae() { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_init_list_args.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_init_list_args.pass.cpp index 46dab74e810..75baf15143a 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_init_list_args.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_init_list_args.pass.cpp @@ -23,7 +23,7 @@ #include <type_traits> #include <variant> -#include "test_convertible.hpp" +#include "test_convertible.h" #include "test_macros.h" struct InitList { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_index_args.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_index_args.pass.cpp index 95f16ac2dd8..07a70e4e8ef 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_index_args.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_index_args.pass.cpp @@ -23,10 +23,10 @@ #include <type_traits> #include <variant> -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" template <class Var, size_t I, class... Args> constexpr auto test_emplace_exists_imp(int) -> decltype( diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_index_init_list_args.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_index_init_list_args.pass.cpp index aee3c3fa11f..26604510323 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_index_init_list_args.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_index_init_list_args.pass.cpp @@ -23,8 +23,8 @@ #include <type_traits> #include <variant> -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" #include "test_macros.h" struct InitList { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_type_args.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_type_args.pass.cpp index 929806a099c..9eaddcc672c 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_type_args.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_type_args.pass.cpp @@ -22,10 +22,10 @@ #include <type_traits> #include <variant> -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" template <class Var, class T, class... Args> constexpr auto test_emplace_exists_imp(int) -> decltype( diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_type_init_list_args.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_type_init_list_args.pass.cpp index 9cb9674f47d..5910e50aef0 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_type_init_list_args.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.mod/emplace_type_init_list_args.pass.cpp @@ -23,8 +23,8 @@ #include <type_traits> #include <variant> -#include "archetypes.hpp" -#include "test_convertible.hpp" +#include "archetypes.h" +#include "test_convertible.h" #include "test_macros.h" struct InitList { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.status/index.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.status/index.pass.cpp index 6d463ad2788..657f9a1ee87 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.status/index.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.status/index.pass.cpp @@ -20,9 +20,9 @@ #include <type_traits> #include <variant> -#include "archetypes.hpp" +#include "archetypes.h" #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.status/valueless_by_exception.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.status/valueless_by_exception.pass.cpp index 2cb730cb0ff..2cf18241738 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.status/valueless_by_exception.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.status/valueless_by_exception.pass.cpp @@ -20,9 +20,9 @@ #include <type_traits> #include <variant> -#include "archetypes.hpp" +#include "archetypes.h" #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp index 8443f1e8e23..2c95dfeb35c 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp @@ -22,9 +22,9 @@ #include <type_traits> #include <variant> -#include "test_convertible.hpp" +#include "test_convertible.h" #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" struct NotSwappable {}; void swap(NotSwappable &, NotSwappable &) = delete; diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant_array.fail.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant_array.fail.cpp index ce79e9c4254..32ad7c35dff 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant_array.fail.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant_array.fail.cpp @@ -20,8 +20,8 @@ #include <cassert> #include "test_macros.h" -#include "variant_test_helpers.hpp" -#include "test_convertible.hpp" +#include "variant_test_helpers.h" +#include "test_convertible.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant_empty.fail.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant_empty.fail.cpp index 3b93cb0ab70..7fb78d42dfc 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant_empty.fail.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant_empty.fail.cpp @@ -16,7 +16,7 @@ #include <variant> #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant_reference.fail.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant_reference.fail.cpp index 7c2c4669083..dd7f71eb461 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant_reference.fail.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant_reference.fail.cpp @@ -16,7 +16,7 @@ #include <variant> #include "test_macros.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/variant/variant.variant/variant_void.fail.cpp b/libcxx/test/std/utilities/variant/variant.variant/variant_void.fail.cpp index 27e9c399f8d..7be8ac48311 100644 --- a/libcxx/test/std/utilities/variant/variant.variant/variant_void.fail.cpp +++ b/libcxx/test/std/utilities/variant/variant.variant/variant_void.fail.cpp @@ -20,8 +20,8 @@ #include <cassert> #include "test_macros.h" -#include "variant_test_helpers.hpp" -#include "test_convertible.hpp" +#include "variant_test_helpers.h" +#include "test_convertible.h" int main(int, char**) { diff --git a/libcxx/test/std/utilities/variant/variant.visit/visit.pass.cpp b/libcxx/test/std/utilities/variant/variant.visit/visit.pass.cpp index 11e26d097d4..5a57164a2b6 100644 --- a/libcxx/test/std/utilities/variant/variant.visit/visit.pass.cpp +++ b/libcxx/test/std/utilities/variant/variant.visit/visit.pass.cpp @@ -24,7 +24,7 @@ #include "test_macros.h" #include "type_id.h" -#include "variant_test_helpers.hpp" +#include "variant_test_helpers.h" enum CallType : unsigned { CT_None, |