llvm-project/libcxx/test/std/utilities/any/any.nonmembers/any.cast
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
..
any_cast_pointer.pass.cpp Add an any_cast test for array types. Thanks to Jonathan Wakely for the suggestion. 2019-04-24 12:11:12 +00:00
any_cast_reference.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
any_cast_request_invalid_value_category.fail.cpp Fix test failures due to modified wording in Clang diagnostics. 2019-06-24 22:01:03 +00:00
const_correctness.fail.cpp Fix test failures due to modified wording in Clang diagnostics. 2019-06-24 22:01:03 +00:00
not_copy_constructible.fail.cpp [libc++] Mark bad_any_cast tests as unsupported when the dylib doesn't support bad_any_cast 2019-03-21 15:37:11 +00:00
reference_types.fail.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00