llvm-project/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor
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
..
U.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
const_T.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
const_optional_U.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
copy.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
ctor.fail.cpp Cleaup of requirements for optional. While researching LWG3196, I realized that optional did not reject 'const in_place_t' like it should. Added a test as well, and a check for arrays (which were already disallowed, but now we get a better error message). Should not affect anyone's code. 2019-03-25 16:35:59 +00:00
deduct.fail.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
deduct.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
default.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
empty_in_place_t_does_not_clobber.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
explicit_const_optional_U.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
explicit_optional_U.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
in_place_t.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
initializer_list.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
move.fail.cpp Update test to better check for the non-constexpr-ness of a move constructor. Fixes PR#41577. 2019-04-25 02:12:51 +00:00
move.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
nullopt_t.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00
optional_U.pass.cpp Support tests in freestanding 2019-02-04 20:31:13 +00:00
rvalue_T.pass.cpp libcxx: Rename .hpp files in libcxx/test/support to .h 2019-08-21 00:14:12 +00:00