llvm-project/libcxx/test/std/strings/string.view
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
..
string.view.access Mark 'front()' and 'back()' as noexcept for array/deque/string/string_view. These are just rebranded 'operator[]', and should be noexcept like it is. 2019-03-19 03:30:07 +00:00
string.view.capacity Support tests in freestanding 2019-02-04 20:31:13 +00:00
string.view.comparison libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
string.view.cons libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
string.view.find libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
string.view.hash libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
string.view.io 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
string.view.iterators Support tests in freestanding 2019-02-04 20:31:13 +00:00
string.view.modifiers [libc++] Remove unnecessary <iostream> #includes in tests 2019-03-28 16:38:15 +00:00
string.view.nonmem Support tests in freestanding 2019-02-04 20:31:13 +00:00
string.view.ops libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
string.view.synop 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
string.view.template libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
string_view.literals 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
char.bad.fail.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
traits_mismatch.fail.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
types.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00