summaryrefslogtreecommitdiff
path: root/libcxx/test/std/strings/basic.string/traits_mismatch.verify.cpp
AgeCommit message (Collapse)Author
2023-09-01[libc++] Apply clang formatting to all string unit testsBrendan Emery
This applies clang-format to the std::string unit tests in preparation for landing https://reviews.llvm.org/D140550. Differential Revision: https://reviews.llvm.org/D140612
2022-11-21[libc++][NFC] Add missing conditionals for the existence of wide charactersLouis Dionne
Differential Revision: https://reviews.llvm.org/D138435
2022-04-05[libc++] Tidy up tests for deduction guides and other compile-time failing ↵Louis Dionne
properties in std::string Instead of using `.fail.cpp` tests, use `.verify.cpp` to check for the exact reason of the failure. In the case of deduction guides, use SFINAE based tests instead since that is our preferred way of testing those. Finally, ensure that we actually run the test in `iter_alloc_deduction.pass.cpp`, since we were not running anything before. Differential Revision: https://reviews.llvm.org/D123055