Skip to content
  1. Oct 11, 2021
  2. Oct 10, 2021
    • Joe Loser's avatar
      [libc++][test] Replace a TEST_NOEXCEPT_FALSE with noexcept(false). NFC. · 65d62e52
      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`.
      65d62e52
  3. Oct 09, 2021
  4. Oct 08, 2021
  5. Oct 07, 2021
    • Louis Dionne's avatar
      c07b80ca
    • Louis Dionne's avatar
      [runtimes] Add tests for vendor-specific properties · f6a74908
      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
      f6a74908
    • Mark de Wever's avatar
      [libc++] Use addressof in assignment operator. · b8608b87
      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
      b8608b87
    • Mark de Wever's avatar
      [libcxx[ Run generate_private_header_tests.py · b25f6188
      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.
      b25f6188
    • Mark de Wever's avatar
      [libc++][format] Adds bool formatter. · 7fb9f99f
      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
      7fb9f99f
    • Mark de Wever's avatar
      [libc++][format] Adds char formatter. · 49e736d8
      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
      49e736d8
    • Mark de Wever's avatar
      [libc++][format] Adds integer formatter. · 3e9689d7
      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
      3e9689d7
    • Mark de Wever's avatar
      [libc++][format] Adds string formatter. · d550930a
      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
      d550930a
    • David Spickett's avatar
      [libcxx][pretty printers] Correct tests run detection · 7ee133d3
      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.
      7ee133d3
    • David Spickett's avatar
      [libcxx][pretty printers] Report not being able to trace test program · 88f08899
      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
      88f08899
    • David Spickett's avatar
      [libcxx][pretty printers] Correct locale for u16/u32 string tests · 17608d34
      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
      17608d34
  6. Oct 06, 2021
  7. Oct 05, 2021
  8. Oct 04, 2021
  9. Oct 03, 2021
  10. Oct 02, 2021
  11. Oct 01, 2021
  12. Sep 30, 2021
  13. Sep 29, 2021
Loading