llvm-project/libcxx/test/std/strings/basic.string/string.cons
Nico Weber cc89063bff 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
2019-08-21 00:14:12 +00:00
..
T_size_size.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
alloc.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
brace_assignment.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
char_assignment.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
copy.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
copy_alloc.pass.cpp [libcxx] [test] Fix test bugs in string.cons/copy_alloc.pass.cpp. 2019-04-03 00:05:49 +00:00
copy_assignment.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
default_noexcept.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
dtor_noexcept.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
implicit_deduction_guides.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
initializer_list.pass.cpp Add include for 'test_macros.h' to all the tests that were missing them. Thanks to Zoe for the (big, but simple) patch. NFC intended. 2019-05-31 18:35:30 +00:00
initializer_list_assignment.pass.cpp Add include for 'test_macros.h' to all the tests that were missing them. Thanks to Zoe for the (big, but simple) patch. NFC intended. 2019-05-31 18:35:30 +00:00
iter_alloc.pass.cpp Properly constrain basic_string(Iter, Iter, Alloc = A()) 2019-03-14 12:31:10 +00:00
iter_alloc_deduction.fail.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
iter_alloc_deduction.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
move.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
move_alloc.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
move_assign_noexcept.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
move_assignment.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
move_noexcept.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
pointer_alloc.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
pointer_assignment.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
pointer_size_alloc.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
size_char_alloc.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
string_view.fail.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
string_view.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
string_view_assignment.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
string_view_deduction.fail.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
string_view_deduction.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
string_view_size_size_deduction.fail.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
string_view_size_size_deduction.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
substr.pass.cpp [libc++] Mark several tests as XFAIL on macosx10.7 2019-02-27 00:57:57 +00:00