Skip to content
  1. Oct 11, 2021
  2. Oct 04, 2021
  3. Sep 27, 2021
  4. Sep 23, 2021
  5. Sep 09, 2021
  6. Aug 18, 2021
  7. Aug 12, 2021
  8. Jun 25, 2021
  9. Jun 24, 2021
  10. Apr 21, 2021
  11. Apr 20, 2021
  12. Apr 12, 2021
  13. Mar 25, 2021
  14. Mar 05, 2021
  15. Feb 25, 2021
  16. Feb 24, 2021
  17. Feb 20, 2021
  18. Feb 19, 2021
  19. Oct 30, 2020
    • Louis Dionne's avatar
      [libc++] NFC: Fix several GCC warnings in the test suite · c479e0c9
      Louis Dionne authored
      - Several -Wshadow warnings
      - Several places where we did not initialize our base class explicitly
      - Unused variable warnings
      - Some tautological comparisons
      - Some places where we'd pass null arguments to functions expecting
        non-null (in unevaluated contexts)
      - Add a few pragmas to turn off spurious warnings
      - Fix warnings about declarations that don't declare anything
      - Properly disable deprecation warnings in ext/ tests (the pragmas we
        were using didn't work on GCC)
      - Disable include_as_c.sh.cpp because GCC complains about C++ flags
        when compiling as C. I couldn't find a way to fix this one properly,
        so I'm disabling the test. This isn't great, but at least we'll be
        able to enable warnings in the whole test suite with GCC.
      c479e0c9
  20. Sep 22, 2020
  21. Sep 02, 2020
  22. Jun 03, 2020
    • Louis Dionne's avatar
      [libc++] Remove the c++98 Lit feature from the test suite · 31cbe0f2
      Louis Dionne authored
      C++98 and C++03 are effectively aliases as far as Clang is concerned.
      As such, allowing both std=c++98 and std=c++03 as Lit parameters is
      just slightly confusing, but provides no value. It's similar to allowing
      both std=c++17 and std=c++1z, which we don't do.
      
      This was discovered because we had an internal bot that ran the test
      suite under both c++98 AND c++03 -- one of which is redundant.
      
      Differential Revision: https://reviews.llvm.org/D80926
      31cbe0f2
  23. May 03, 2020
  24. Apr 15, 2020
    • Louis Dionne's avatar
      [libc++] Remove workaround for .fail.cpp tests that don't have clang-verify markup · 7a6aaf9b
      Louis Dionne authored
      By renaming .fail.cpp tests that don't need clang-verify to .compile.fail.cpp,
      the new test format will not try to compile these tests with clang-verify,
      and the old test format will work just the same. However, this allows
      removing a workaround that requires parsing each test looking for
      clang-verify markup.
      
      After this change, a .fail.cpp test should always have clang-verify markup.
      When clang-verify is not supported by the compiler, we will just check that
      these tests fail to compile. When clang-verify is supported, these tests
      will be compiled with clang-verify whether they have markup or not (so
      they should have markup, or they will fail).
      
      This simplifies the test suite and also ensures that all of our .fail.cpp
      tests provide clang-verify markup. If it's impossible for a test to have
      clang-verify markup, it can be moved to a .compile.fail.cpp test, which
      are unconditionally just checked for compilation failure.
      7a6aaf9b
  25. Apr 03, 2020
    • Louis Dionne's avatar
      [libc++] Remove useless nothing_to_do.pass.cpp tests · aaaa25e2
      Louis Dionne authored
      The testing script used to test libc++ historically did not like directories
      without any testing files, so these tests had been added. Since this is
      not necessary anymore, we can now remove these files. This has the benefit
      that the total number of tests reflects the real number of tests more
      closely, and we also skip some unnecessary work (especially relevant when
      running tests over SSH).
      
      However, some nothing_to_do.pass.cpp tests actually serve the purpose of
      documenting that an area of the Standard doesn't need to be tested, or is
      tested elsewhere. These files are not removed by this commit.
      
      Removal done with:
      
        import os
        import itertools
        for (dirpath, dirnames, filenames) in itertools.chain(os.walk('./libcxx/test'),
                                                              os.walk('./libcxxabi/test')):
            if len(filenames + dirnames) > 1 and \
               any(p == 'nothing_to_do.pass.cpp' for p in filenames):
                os.remove(os.path.join(dirpath, 'nothing_to_do.pass.cpp'))
      aaaa25e2
  26. Oct 23, 2019
  27. Sep 26, 2019
    • Louis Dionne's avatar
      [libc++] Take 2: Implement LWG 2510 · e16f2cb6
      Louis Dionne authored
      Summary:
      LWG2510 makes tag types like allocator_arg_t explicitly default
      constructible instead of implicitly default constructible. It also
      makes the constructors for std::pair and std::tuple conditionally
      explicit based on the explicit-ness of the default constructibility
      for the pair/tuple's elements.
      
      This was previously committed as r372777 and reverted in r372832 due to
      the commit breaking LLVM's build in C++14 mode. This issue has now been
      addressed.
      
      Reviewers: mclow.lists
      
      Subscribers: christof, jkorous, dexonsmith, libcxx-commits
      
      Tags: #libc
      
      Differential Revision: https://reviews.llvm.org/D65161
      
      llvm-svn: 372983
      e16f2cb6
  28. Sep 25, 2019
  29. Sep 24, 2019
    • Louis Dionne's avatar
      [libc++] Implement LWG 2510 · 95411dd4
      Louis Dionne authored
      Summary:
      LWG2510 makes tag types like allocator_arg_t explicitly default
      constructible instead of implicitly default constructible. It also
      makes the constructors for std::pair and std::tuple conditionally
      explicit based on the explicit-ness of the default constructibility
      for the pair/tuple's elements.
      
      Reviewers: mclow.lists, EricWF
      
      Subscribers: christof, jkorous, dexonsmith, libcxx-commits
      
      Tags: #libc
      
      Differential Revision: https://reviews.llvm.org/D65161
      
      llvm-svn: 372777
      95411dd4
  30. Aug 21, 2019
    • Nico Weber's avatar
      libcxx: Rename .hpp files in libcxx/test/support to .h · cc89063b
      Nico Weber authored
      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
      cc89063b
  31. Jul 05, 2019
  32. Jun 21, 2019
    • Eric Fiselier's avatar
      Make move and forward work in C++03. · 000f25a3
      Eric Fiselier authored
      These functions are key to allowing the use of rvalues and variadics
      in C++03 mode. Everything works the same as in C++11, except for one
      tangentially related case:
      
      struct T {
        T(T &&) = default;
      };
      
      In C++11, T has a deleted copy constructor. But in C++03 Clang gives
      it both a move and a copy constructor. This seems reasonable enough
      given the extensions it's using.
      
      The other changes in this patch were the minimal set required
      to keep the tests passing after the move/forward change. Most notably
      the removal of the `__rv<unique_ptr>` hack that was present
      in an attempt to make unique_ptr move only without language support.
      
      llvm-svn: 364063
      000f25a3
    • Eric Fiselier's avatar
      Make rvalue metaprogramming traits work in C++03. · 87cf92d9
      Eric Fiselier authored
      The next step is to get move and forward working in C++03.
      
      llvm-svn: 364053
      87cf92d9
  33. May 31, 2019
  34. Feb 04, 2019
    • JF Bastien's avatar
      Support tests in freestanding · 2df59c50
      JF Bastien authored
      Summary:
      Freestanding is *weird*. The standard allows it to differ in a bunch of odd
      manners from regular C++, and the committee would like to improve that
      situation. I'd like to make libc++ behave better with what freestanding should
      be, so that it can be a tool we use in improving the standard. To do that we
      need to try stuff out, both with "freestanding the language mode" and
      "freestanding the library subset".
      
      Let's start with the super basic: run the libc++ tests in freestanding, using
      clang as the compiler, and see what works. The easiest hack to do this:
      
      In utils/libcxx/test/config.py add:
      
        self.cxx.compile_flags += ['-ffreestanding']
      
      Run the tests and they all fail.
      
      Why? Because in freestanding `main` isn't special. This "not special" property
      has two effects: main doesn't get mangled, and main isn't allowed to omit its
      `return` statement. The first means main gets mangled and the linker can't
      create a valid executable for us to test. The second means we spew out warnings
      (ew) and the compiler doesn't insert the `return` we omitted, and main just
      falls of the end and does whatever undefined behavior (if you're luck, ud2
      leading to non-zero return code).
      
      Let's start my work with the basics. This patch changes all libc++ tests to
      declare `main` as `int main(int, char**` so it mangles consistently (enabling us
      to declare another `extern "C"` main for freestanding which calls the mangled
      one), and adds `return 0;` to all places where it was missing. This touches 6124
      files, and I apologize.
      
      The former was done with The Magic Of Sed.
      
      The later was done with a (not quite correct but decent) clang tool:
      
        https://gist.github.com/jfbastien/793819ff360baa845483dde81170feed
      
      This works for most tests, though I did have to adjust a few places when e.g.
      the test runs with `-x c`, macros are used for main (such as for the filesystem
      tests), etc.
      
      Once this is in we can create a freestanding bot which will prevent further
      regressions. After that, we can start the real work of supporting C++
      freestanding fairly well in libc++.
      
      <rdar://problem/47754795>
      
      Reviewers: ldionne, mclow.lists, EricWF
      
      Subscribers: christof, jkorous, dexonsmith, arphaman, miyuki, libcxx-commits
      
      Differential Revision: https://reviews.llvm.org/D57624
      
      llvm-svn: 353086
      2df59c50
Loading