[PATCH] D66104: libcxx: Rename .hpp files in libcxx/test/support to .h

Nico Weber via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 12 12:41:29 PDT 2019


thakis created this revision.
thakis added a reviewer: EricWF.
Herald added subscribers: arphaman, christof.

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; don

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


https://reviews.llvm.org/D66104

Files:
  libcxx/benchmarks/filesystem.bench.cpp
  libcxx/test/libcxx/algorithms/half_positive.pass.cpp
  libcxx/test/libcxx/containers/gnu_cxx/hash_map.pass.cpp
  libcxx/test/libcxx/containers/gnu_cxx/hash_set.pass.cpp
  libcxx/test/libcxx/containers/sequences/deque/spare_block_handling.pass.cpp
  libcxx/test/libcxx/debug/containers/db_associative_container_tests.pass.cpp
  libcxx/test/libcxx/debug/containers/db_sequence_container_iterators.multithread.pass.cpp
  libcxx/test/libcxx/debug/containers/db_sequence_container_iterators.pass.cpp
  libcxx/test/libcxx/debug/containers/db_string.pass.cpp
  libcxx/test/libcxx/debug/containers/db_unord_container_tests.pass.cpp
  libcxx/test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair.pass.cpp
  libcxx/test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/db_deallocate.pass.cpp
  libcxx/test/libcxx/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/db_deallocate.pass.cpp
  libcxx/test/libcxx/input.output/filesystems/class.directory_entry/directory_entry.mods/last_write_time.sh.cpp
  libcxx/test/libcxx/input.output/filesystems/class.path/path.itr/iterator_db.pass.cpp
  libcxx/test/libcxx/input.output/filesystems/class.path/path.itr/reverse_iterator_produces_diagnostic.fail.cpp
  libcxx/test/libcxx/input.output/filesystems/class.path/path.req/is_pathable.pass.cpp
  libcxx/test/libcxx/type_traits/convert_to_integral.pass.cpp
  libcxx/test/libcxx/utilities/optional/optional.object/triviality.abi.pass.cpp
  libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/disable_reduced_arity_initialization_extension.pass.cpp
  libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/enable_reduced_arity_initialization_extension.pass.cpp
  libcxx/test/libcxx/utilities/utility/pairs/pairs.pair/assign_tuple_like.pass.cpp
  libcxx/test/libcxx/utilities/utility/pairs/pairs.pair/piecewise.pass.cpp
  libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp
  libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp
  libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp
  libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp
  libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp
  libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp
  libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n.pass.cpp
  libcxx/test/std/algorithms/alg.nonmodifying/alg.search/search_n_pred.pass.cpp
  libcxx/test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp
  libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/make.heap/make_heap_comp.pass.cpp
  libcxx/test/std/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp
  libcxx/test/std/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp
  libcxx/test/std/algorithms/alg.sorting/alg.min.max/minmax_init_list_comp.pass.cpp
  libcxx/test/std/containers/associative/map/map.access/index_key.pass.cpp
  libcxx/test/std/containers/associative/map/map.access/index_rv_key.pass.cpp
  libcxx/test/std/containers/associative/map/map.ops/count.pass.cpp
  libcxx/test/std/containers/associative/map/map.ops/count_transparent.pass.cpp
  libcxx/test/std/containers/associative/map/map.ops/equal_range.pass.cpp
  libcxx/test/std/containers/associative/map/map.ops/equal_range_transparent.pass.cpp
  libcxx/test/std/containers/associative/map/map.ops/find.pass.cpp
  libcxx/test/std/containers/associative/map/map.ops/lower_bound.pass.cpp
  libcxx/test/std/containers/associative/map/map.ops/upper_bound.pass.cpp
  libcxx/test/std/containers/associative/multimap/multimap.ops/count.pass.cpp
  libcxx/test/std/containers/associative/multimap/multimap.ops/count_transparent.pass.cpp
  libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp
  libcxx/test/std/containers/associative/multimap/multimap.ops/equal_range_transparent.pass.cpp
  libcxx/test/std/containers/associative/multimap/multimap.ops/find.pass.cpp
  libcxx/test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp
  libcxx/test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp
  libcxx/test/std/containers/associative/multiset/count.pass.cpp
  libcxx/test/std/containers/associative/multiset/count_transparent.pass.cpp
  libcxx/test/std/containers/associative/multiset/equal_range.pass.cpp
  libcxx/test/std/containers/associative/multiset/equal_range_transparent.pass.cpp
  libcxx/test/std/containers/associative/multiset/find.pass.cpp
  libcxx/test/std/containers/associative/multiset/lower_bound.pass.cpp
  libcxx/test/std/containers/associative/multiset/upper_bound.pass.cpp
  libcxx/test/std/containers/associative/set/count.pass.cpp
  libcxx/test/std/containers/associative/set/count_transparent.pass.cpp
  libcxx/test/std/containers/associative/set/equal_range.pass.cpp
  libcxx/test/std/containers/associative/set/equal_range_transparent.pass.cpp
  libcxx/test/std/containers/associative/set/find.pass.cpp
  libcxx/test/std/containers/associative/set/lower_bound.pass.cpp
  libcxx/test/std/containers/associative/set/upper_bound.pass.cpp
  libcxx/test/std/containers/map_allocator_requirement_test_templates.h
  libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp
  libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_iter_iter.pass.cpp
  libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp
  libcxx/test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp
  libcxx/test/std/containers/sequences/list/list.ops/remove_if.pass.cpp
  libcxx/test/std/containers/sequences/vector.bool/enabled_hash.pass.cpp
  libcxx/test/std/containers/set_allocator_requirement_test_templates.h
  libcxx/test/std/containers/unord/unord.map/unord.map.elem/index.pass.cpp
  libcxx/test/std/diagnostics/syserr/syserr.hash/enabled_hash.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/default.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/memory_resource_convert.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/equal.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/not_equal.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/allocate.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_const_lvalue_pair.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_rvalue.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_values.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_types.pass.cpp
  libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/deallocate.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_copy.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_move.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/default.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_allocate_and_deallocate.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_is_equal.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.aliases/header_string_synop.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.global/default_resource.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.global/new_delete_resource.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource.global/null_memory_resource.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/equal.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource/memory.resource.eq/not_equal.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/allocate.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/deallocate.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/dtor.pass.cpp
  libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/is_equal.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy_assign.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default_const.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move_assign.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/path.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/assign.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/refresh.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/replace_filename.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_size.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_type_obs.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/hard_link_count.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/last_write_time.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/path.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/status.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/symlink_status.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy_assign.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/ctor.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/default_ctor.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/increment.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move_assign.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/directory_iterator.nonmembers/begin_end.pass.cpp
  libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp
  libcxx/test/std/input.output/filesystems/class.file_status/file_status.cons.pass.cpp
  libcxx/test/std/input.output/filesystems/class.file_status/file_status.mods.pass.cpp
  libcxx/test/std/input.output/filesystems/class.file_status/file_status.obs.pass.cpp
  libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.itr/iterator.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/braced_init.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.compare.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.concat.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/default.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/source.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/empty.fail.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/path.decompose.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_relative_and_proximate.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/generic_string_alloc.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.generic.obs/named_overloads.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/clear.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/make_preferred.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/remove_filename.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_extension.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_filename.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.modifiers/swap.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/c_str.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/named_overloads.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/native.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/operator_string.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.member/path.native.obs/string_alloc.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.fail.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.nonmember/append_op.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.nonmember/comparison_ops.fail.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.io.unicode_bug.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/path.nonmember/swap.pass.cpp
  libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy_assign.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/ctor.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/depth.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/disable_recursion_pending.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/increment.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move_assign.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/pop.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/recursion_pending.pass.cpp
  libcxx/test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.nonmembers/begin_end.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.enum/enum.file_type.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.enum/enum.path.format.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.filesystem.synopsis/file_time_type.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.absolute/absolute.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/canonical.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy/copy.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file_large.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_symlink/copy_symlink.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory_with_attributes.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory_symlink/create_directory_symlink.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_hard_link/create_hard_link.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.create_symlink/create_symlink.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.current_path/current_path.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/equivalent.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.exists/exists.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.file_size/file_size.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_block_file/is_block_file.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_char_file/is_character_file.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_directory/is_directory.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/is_empty.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_fifo/is_fifo.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/is_other.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_regular_file/is_regular_file.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_socket/is_socket.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.is_symlink/is_symlink.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.permissions/permissions.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.proximate/proximate.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.read_symlink/read_symlink.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.remove_all/remove_all.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.rename/rename.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.resize_file/resize_file.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.space/space.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status/status.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/status_known.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.symlink_status/symlink_status.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.temp_dir_path/temp_directory_path.pass.cpp
  libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/container.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/post.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/pre.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op_astrk/test.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.inserter/test.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/container.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/post.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/pre.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/lv_value.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op_astrk/test.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.inserter/test.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/test.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/post.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/pre.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/lv_value.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op_astrk/test.pass.cpp
  libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/inserter/test.pass.cpp
  libcxx/test/std/language.support/support.dynamic/destroying_delete_t_declaration.pass.cpp
  libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/dtor.pass.cpp
  libcxx/test/std/localization/locale.stdcvt/codecvt_utf16.pass.cpp
  (217 more files...)

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66104.214688.patch
Type: text/x-patch
Size: 267045 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190812/822afe0e/attachment-0001.bin>


More information about the llvm-commits mailing list