- Oct 11, 2021
-
-
Joe Loser authored
Implement P2401 which adds a `noexcept` specification to `std::exchange`. Treated as a defect fix which is the motivation for applying this change to all standards mode rather than just C++23 or later as the paper suggests. Reviewed By: Quuxplusone, Mordante, #libc Differential Revision: https://reviews.llvm.org/D111481
-
Joe Loser authored
Implement P2251 which requires `span` and `basic_string_view` to be trivially copyable. They already are - this just adds tests to bind that behavior. Reviewed By: ldionne, Quuxplusone, Mordante, #libc Differential Revision: https://reviews.llvm.org/D111197
-
David Spickett authored
Due to reported failures in a local build. FAIL: Something is wrong in the test framework. Converting character sets: Invalid argument. (was enabled in https://reviews.llvm.org/D111138)
-
Arthur O'Dwyer authored
Differential Revision: https://reviews.llvm.org/D110735
-
- Oct 10, 2021
-
-
Joe Loser authored
Replace `TEST_NOEXCEPT_FALSE` directly with `noexcept(false)` in optional hash test which is only run in C++17 or later. `TEST_NOEXCEPT_FALSE` is only useful in C++03 context where `noexcept` isn't supported by clang. `TEST_NOEXCEPT_FALSE` now only has one remaining use in `hash_unique_ptr.pass.cpp`.
-
- Oct 09, 2021
-
-
Joe Loser authored
`{ind.move.subsumption.compile.pass.cpp}` was accidentally commited in https://reviews.llvm.org/D102639. Per the conversation on Discord in
-
Kent Ross authored
Implement parts of P1614, including three-way comparison for tuples, and expand testing. Reviewed By: ldionne, Mordante, #libc Differential Revision: https://reviews.llvm.org/D108250
-
- Oct 08, 2021
-
-
Joe Loser authored
Implement https://wg21.link/p1394 which allows span to be constructible from any contiguous forwarding-range that has a compatible element type. Fixes https://bugs.llvm.org/show_bug.cgi?id=51443 Reviewed By: ldionne, Quuxplusone, #libc Differential Revision: https://reviews.llvm.org/D110503
-
Mark de Wever authored
While looking at the review comments in D103765 there was an oddity in the tests for the following functions: - atomic_fetch_add - atomic_fetch_add_explicit - atomic_fetch_sub - atomic_fetch_sub_explicit Libc++ allows usage of `atomic_fetch_add<int>(atomic<int*>*, atomic<int*>::difference_type);` MSVC and GCC reject this code: https://godbolt.org/z/9d8WzohbE This makes the atomic `fetch(add|sub).*` Standard conforming and removes the non-conforming extensions. Fixes PR47908 Reviewed By: ldionne, #libc Differential Revision: https://reviews.llvm.org/D103983
-
- Oct 07, 2021
-
-
Louis Dionne authored
Differential Revision: https://reviews.llvm.org/D111329
-
Louis Dionne authored
Vendors take libc++ and ship it in various ways. Some vendors might ship it differently from what upstream LLVM does, i.e. the install location might be different, some ABI properties might differ, etc. In the past few years, I've come across several instances where having a place to test some of these properties would have been incredibly useful. I also just got bitten by the lack of tests of that kind, so I'm adding some now. The tests added by this commit for Apple platforms have numerous TODOs that capture discrepancies between the upstream LLVM CMake and the slightly-modified build we perform internally to produce Apple's system libc++. In the future, the goal would be to upstream all those differences so that it's possible to build a faithful Apple system libc++ with the upstream LLVM sources only. But this isn't only useful for Apple - this lays out the path for any vendor being able to add their own checks (either upstream or downstream) to libc++. This is a re-application of 9892d164, which was reverted in 138dc271 because it broke the build. The issue was that we didn't apply the required changes to libunwind and our CI didn't notice it because we were not running the libunwind tests. This has been fixed now, and we're running the libunwind tests in CI now too. Differential Revision: https://reviews.llvm.org/D110736
-
Mark de Wever authored
Replace `&__rhs` with `_VSTD::addressof(__rhs)` to guard against ADL hijacking of `operator&` in `operator=`. Thanks to @CaseyCarter for bringing it to our attention. Similar issues with hijacking `operator&` still exist, they will be addressed separately. Reviewed By: #libc, Quuxplusone, ldionne Differential Revision: https://reviews.llvm.org/D110852
-
Mark de Wever authored
The script was recently updated to generate different output. This breaks the CI due the patches which used the old version of the script.
-
Mark de Wever authored
Implements the formatter for Boolean types. [format.formatter.spec]/2.3 For each charT, for each cv-unqualified arithmetic type ArithmeticT other than char, wchar_t, char8_t, char16_t, or char32_t, a specialization ``` template<> struct formatter<ArithmeticT, charT>; ``` This removes the stub implemented in D96664. Implements parts of: - P0645 Text Formatting - P1652 Printf corner cases in std::format Completes: - P1868 width: clarifying units of width and precision in std::format Reviewed By: #libc, ldionne Differential Revision: https://reviews.llvm.org/D103670
-
Mark de Wever authored
Implements the formatter for all fundamental integer types. [format.formatter.spec]/2.1 The specializations ``` template<> struct formatter<char, char>; template<> struct formatter<char, wchar_t>; template<> struct formatter<wchar_t, wchar_t>; ``` This removes the stub implemented in D96664. Implements parts of: - P0645 Text Formatting Reviewed By: #libc, ldionne Differential Revision: https://reviews.llvm.org/D103466
-
Mark de Wever authored
Implements the formatter for all fundamental integer types (except `char`, `wchar_t`, and `bool`). [format.formatter.spec]/2.3 For each charT, for each cv-unqualified arithmetic type ArithmeticT other than char, wchar_t, char8_t, char16_t, or char32_t, a specialization ``` template<> struct formatter<ArithmeticT, charT>; ``` This removes the stub implemented in D96664. As an extension it adds partial support for 128-bit integer types. Implements parts of: - P0645 Text Formatting - P1652 Printf corner cases in std::format Completes: - LWG-3248 #b, #B, #o, #x, and #X presentation types misformat negative numbers Reviewed By: #libc, ldionne, vitaut Differential Revision: https://reviews.llvm.org/D103433
-
Mark de Wever authored
Implements the formatter for all string types. [format.formatter.spec]/2.2 For each charT, the string type specializations ``` template<> struct formatter<charT*, charT>; template<> struct formatter<const charT*, charT>; template<size_t N> struct formatter<const charT[N], charT>; template<class traits, class Allocator> struct formatter<basic_string<charT, traits, Allocator>, charT>; template<class traits> struct formatter<basic_string_view<charT, traits>, charT>; ``` This removes the stub implemented in D96664. Implements parts of: - P0645 Text Formatting - P1868 width: clarifying units of width and precision in std::format Reviewed By: #libc, ldionne, vitaut Differential Revision: https://reviews.llvm.org/D103425
-
David Spickett authored
Missing "global" meant that we set a local "has_run_tests" so the global was False by the time everything has run.
-
David Spickett authored
If you don't have ptrace permissions this test will fail to run silently, this adds a check for that and anything else that might do similar things. The output will now be: ``` FAILED test program did not run correctly, check gdb warnings /usr/bin/gdb: warning: Couldn't determine a path for the index cache directory. No symbol table is loaded. Use the "file" command. warning: Error disabling address space randomization: Operation not permitted warning: Could not trace the inferior process. warning: ptrace: Operation not permitted error: command failed with exit status: 255 ``` We already have a feature to check for a compatible python enabled gdb, so I think it's reasonable to check for this at test runtime. Note that this is different to the catch all at the end of the test script. That would be a case where you can trace but something else made it stop mid way that wasn't our test breakpoints. Reviewed By: saugustine Differential Revision: https://reviews.llvm.org/D110936
-
David Spickett authored
When the locale is not some UTF-8 these tests fail. (different results for python2 linked gdbs vs. python3 but same issue) Setting the locale just for the test works around this. By default Ubuntu comes with just C.UTF-8. I've chosen to use en_US.UTF-8 instead given that my Mac doesn't have the former and there's a slim chance this test might run there. This also enables the u16string tests which are now passing. Reviewed By: #libc, ldionne, saugustine Differential Revision: https://reviews.llvm.org/D111138
-
- Oct 06, 2021
-
-
Arthur O'Dwyer authored
The unique (ha!) thing about this range type is that it's move-only. Its contiguity is unsurprising (most of our test ranges are contiguous). Discussed in D111231 but committed separately for clarity.
-
Arthur O'Dwyer authored
If you have a `begin() const` member, you don't need a `begin()` member unless you want it to do something different (e.g. have a different return type). So in general, //view// types don't need `begin()` non-const members. Also, static_assert some things about the types in "types.h", so that we don't accidentally break those properties under refactoring. Differential Revision: https://reviews.llvm.org/D111231
-
Louis Dionne authored
Reduce code duplication by sharing most of the test suite setup across the different from-scratch configs. Differential Revision: https://reviews.llvm.org/D111196
-
Joe Loser authored
Implement P1391 (https://wg21.link/p1391) which allows `std::string_view` to be constructible from any contiguous range of characters. Note that a different paper (http://wg21.link/P1989) handles the generic range constructor for `std::string_view`. Reviewed By: ldionne, Quuxplusone, Mordante, #libc Differential Revision: https://reviews.llvm.org/D110718
-
Louis Dionne authored
This is less brittle than hand-picking the substitutions that we pass to the test, since a config could theorically use non-base substitutions as well (such as defining %{flags} in terms of another substitution like %{include}). Also, print the decoded substitutions, which makes it much easier to debug the test when it fails. Differential Revision: https://reviews.llvm.org/D111179
-
- Oct 05, 2021
-
-
Joe Loser authored
Some tests repeat the definition of `DELETE_FUNCTION` macro locally. However, it's not even requred to guard against in the C++03 case since Clang supports `= delete;` in C++03 mode. A warning is issued but `libc++` tests run with `-Wno-c++11-extensions`, so this isn't an issue. Since we don't support other compilers in C++03 mode, `= delete;` is always available for use. As such, inline all calls of `DELETE_FUNCTION` to use `= delete;`. Reviewed By: ldionne, #libc Differential Revision: https://reviews.llvm.org/D111148
-
Joe Loser authored
Test file defines `LIBCPP11_STATIC_ASSERT` but it never uses it now. It always uses `static_assert` unconditionally. So, remove the unused macro.
-
Martin Storsjö authored
This was missed in ec574f5d. TIME_UTC is a define that goes along with timespec_get. The testcase that it is moved to is only run for >= C++17, so the surrounding ifdef guard can be dropped. Differential Revision: https://reviews.llvm.org/D110988
-
- Oct 04, 2021
-
-
Louis Dionne authored
-
Louis Dionne authored
-
- Oct 03, 2021
-
-
Arthur O'Dwyer authored
The existing tests for transform_view::iterator weren't quite right, and can be simplified now that we have more of C++20 available to us. Having done that, let's use the same pattern for iota_view::iterator as well. Differential Revision: https://reviews.llvm.org/D110774
-
- Oct 02, 2021
-
-
Mark de Wever authored
-
Mark de Wever authored
This adds the width estimation functions to the std-format-spec. Implements parts of: - P0645 Text Formatting - P1868 width: clarifying units of width and precision in std::format Reviewed By: #libc, ldionne, vitaut Differential Revision: https://reviews.llvm.org/D103413
-
- Oct 01, 2021
-
-
Arthur O'Dwyer authored
Discussed in D110794.
-
Arthur O'Dwyer authored
Even if these comments have a benefit in .h files (for editors that care about language but can't be configured to treat .h as C++ code), they certainly have no benefit for files with the .cpp extension. Discussed in D110794.
-
Arthur O'Dwyer authored
Even if these comments have a benefit in .h files (for editors that care about language but can't be configured to treat .h as C++ code), they certainly have no benefit for files with the .cpp extension. Discussed in D110794.
-
David Spickett authored
This reverts commit e9564c36 due to a report of these tests failing.
-
- Sep 30, 2021
-
-
Louis Dionne authored
Apple's libc++ has a few differences with the LLVM libc++, and it is necessary to use a custom configuration file to test it properly. Differential Revision: https://reviews.llvm.org/D110777
- Sep 29, 2021
-
-
Louis Dionne authored
Differential Revision: https://reviews.llvm.org/D110433
-