1. c6da5c5 [libcxx] [test] Fix Clang -Wunused-local-typedef warnings. by Stephan T. Lavavej · 6 years ago
  2. 5d11d6e [libcxx] [test] Include <cassert> for assert(). by Stephan T. Lavavej · 6 years ago
  3. 5e97ad3 [libcxx] [test] Fix MSVC warning C4800. by Stephan T. Lavavej · 6 years ago
  4. b124ade Rename cxx-benchmark-unittests target and convert to LIT. by Eric Fiselier · 6 years ago
  5. 439de45 [libcxx] [test] Strip trailing whitespace. NFC. by Stephan T. Lavavej · 6 years ago
  6. 98d4ace Implement P0972R0: <chrono> zero(), min(), and max() should be noexcept. Reviewed as https://reviews.llvm.org/D53828 by Marshall Clow · 6 years ago
  7. 52ddb5e [libcxx] Implement http://wg21.link/p1006, constexpr in pointer_traits by Louis Dionne · 6 years ago
  8. 16a8e7e Add emplace tests for multiset/unordered_multiset. by Eric Fiselier · 6 years ago
  9. 3870a97 Fix PR39619 - iterator_traits isn't SFINAE-friendly enough. Thanks to Eric for the report by Marshall Clow · 6 years ago
  10. e754a7a [NFC] Reformat std::optional tests by Louis Dionne · 6 years ago
  11. 73d2ecc Fix test assumption that Linux implies glibc. by Dan Albert · 6 years ago
  12. 5dc3776 Revert "Bug 39129: Speeding up partition_point/lower_bound/upper_bound/ by using unsigned division by 2 when possible." by Louis Dionne · 6 years ago
  13. f10e0ac [libcxx] Fix usage of _C2, which is a "nasty macro" in some environments by Louis Dionne · 6 years ago
  14. 71ac96a Second half of C++17's splicing maps and sets by Erik Pilkington · 6 years ago
  15. 3238cbf XFAIL test on OS X availability by Eric Fiselier · 6 years ago
  16. 207b919 Bug 39129: Speeding up partition_point/lower_bound/upper_bound/ by using unsigned division by 2 when possible. by Eric Fiselier · 6 years ago
  17. 293b83d Fix PR39458 _LIBCPP_DEBUG breaks heterogeneous compare. by Eric Fiselier · 6 years ago
  18. 924b8f3 Work around gcc.gnu.org/PR87766 by Eric Fiselier · 6 years ago
  19. 6dcb34a XFAIL sized deallocation test with GCC by Eric Fiselier · 6 years ago
  20. 5be2163 Run the min/max tests agaist the header <charconv>. Fix that header so it passes. NFC. by Marshall Clow · 6 years ago
  21. e09f85b Implement sized deallocation for std::allocator and friends. by Eric Fiselier · 6 years ago
  22. 1b9ee84 Temporarily Revert "Implement sized deallocation for std::allocator and friends." by Eric Christopher · 6 years ago
  23. 0cfdf55 Implement sized deallocation for std::allocator and friends. by Eric Fiselier · 6 years ago
  24. 842383f Revert "Teach __libcpp_is_floating_point that __fp16 and _Float16 are" by Petr Hosek · 6 years ago
  25. 005bb4c Fix use of libc++ specific macro in support/test_macros.h by Eric Fiselier · 6 years ago
  26. 0423faf Adjust unsupported C++ versions in some tests by Mikhail Maltsev · 6 years ago
  27. 9678b5d Mark the move construct/move assign tests as unsupported on C++03 by Marshall Clow · 6 years ago
  28. 374084f Add tests for match_results copy/move assignment operators. NFC by Marshall Clow · 6 years ago
  29. 268b4d0 Remove a 'const' from the synopsis. NFC by Marshall Clow · 6 years ago
  30. a894ebb Add tests for match_results copy/move construction. NFC by Marshall Clow · 6 years ago
  31. 9110b80 Update commnents to reflect the changes for LWG#3127. NFC by Marshall Clow · 6 years ago
  32. 3d1d923 Update commnents to reflect the changes for LWG#3122. NFC by Marshall Clow · 6 years ago
  33. 0a890c9 [libcxx] [test] Don't detect Windows' UCRT with TEST_COMPILER_C1XX by Billy Robert O'Neal III · 6 years ago
  34. 87aef88 [libcxx] [test] Add missing <stdexcept> to map at tests. by Billy Robert O'Neal III · 6 years ago
  35. 22b685e Repair thread-unsafe modifications of n_alive in F.pass.cpp by Billy Robert O'Neal III · 6 years ago
  36. 4104ebe [libcxx] Mark chrono literal unit tests as being unsupported on AppleClang 10 by Louis Dionne · 6 years ago
  37. cc5c12d Recommit <chrono> changes with a couple xtra tests marked to fail on apple's clang. Reviewed as D51762 by Marshall Clow · 6 years ago
  38. 93d0856 Re-apply r344546 "Mark a couple of test cases as 'C++17-only'..." by Artem Dergachev · 6 years ago
  39. 7f20dc6 Revert r344529 "Implement the first part of the calendar support for C++20" by Artem Dergachev · 6 years ago
  40. 689f6cd Mark a couple of test cases as 'C++17-only' pending the resolution of PR#39232 by Marshall Clow · 6 years ago
  41. 1b8e200 Wrap up the new chrono literals in an #ifdef so that old versions of clang don't complain. I'm looking at you, clang 5.0.1 by Marshall Clow · 6 years ago
  42. fc25eeb Implement the first part of the calendar support for C++20. This is still incomplete; there will be more patches coming. Reviewed as D51762 by Marshall Clow · 6 years ago
  43. fa1a3d5 One more local type warning removed from the tests. NFC by Marshall Clow · 6 years ago
  44. 8f07ece Update the array tests to not use a local type; removes warnings in C++03. NFC by Marshall Clow · 6 years ago
  45. 477f04b Update all the max_size tests to eliminate signed/unsigned comparison warnings. NFC by Marshall Clow · 6 years ago
  46. e436a75 Add a test that shows what happens with throwing destructors. NFC. by Marshall Clow · 6 years ago
  47. b5d4ffd Use TEST_STD_VER instead of __cplusplus [NFC] by Aaron Puchert · 6 years ago
  48. c4edc5a Use std::scoped_lock only for C++17 and newer by Aaron Puchert · 6 years ago
  49. 697faed Add test macros for always_inline and noinline by Eric Fiselier · 6 years ago
  50. f7d5bd2 Annotate scoped_lock as with scoped_lockable attribute by Aaron Puchert · 6 years ago
  51. 385cc71 [libcxx] Mark std::async race condition test as unsupported on Darwin by Louis Dionne · 6 years ago
  52. ea2334b Mork more tests as FLAKY by Eric Fiselier · 6 years ago
  53. 52a8692 Fix threaded test under no-threading configuration by Eric Fiselier · 6 years ago
  54. 2495dab [libcxx] Fix the binder deprecation tests on Clang 5. by Louis Dionne · 6 years ago
  55. 58deb8a [libcxx] Fix buildbots on Debian by Louis Dionne · 6 years ago
  56. 13cf3b9 [libc++] Add deprecated attributes to many deprecated components by Louis Dionne · 6 years ago
  57. 7a26d87 Mark [[nodiscard]] tests unsupported on GCC prior to 7.0 by Eric Fiselier · 6 years ago
  58. 33cc965 Fix UB in SIMD tests. by Eric Fiselier · 6 years ago
  59. 8ee872e [libcxx] Readjust nodiscard_extensions.pass.cpp test - just disable for ASAN by Roman Lebedev · 6 years ago
  60. 23b77ec Mark test as flaky by Eric Fiselier · 6 years ago
  61. 4a5c6f3 [libcxx] Blind attempt to fix harmless leak in nodiscard_extensions.pass.cpp test by Roman Lebedev · 6 years ago
  62. caf40ae [libc++] Add _LIBCPP_ENABLE_NODISCARD and _LIBCPP_NODISCARD_EXT to allow pre-C++2a [[nodiscard]] by Roman Lebedev · 6 years ago
  63. 087a509 Fix diagnostic regex in variant tests to tolerate older clang versions by Eric Fiselier · 6 years ago
  64. e59d098 Revert "Implement LWG 2221 - No formatted output operator for nullptr." by Volodymyr Sapsai · 6 years ago
  65. f06032b Implement LWG 2221 - No formatted output operator for nullptr. Reviewed as https://reviews.llvm.org/D44263 by Marshall Clow · 6 years ago
  66. 989927c Don't require relops on variant alternatives to all return the same type. by Eric Fiselier · 6 years ago
  67. 699cb5b Remove unused include of "verbose_assert.h" by Marshall Clow · 6 years ago
  68. 1755c75 Mark LWG#3102 as complete. No code changes, but I updated a test or two by Marshall Clow · 6 years ago
  69. e3973fd Implement the infrastructure for feature-test macros. Very few actual feature test macros, though. Reviewed as: https://reviews.llvm.org/D51955 by Marshall Clow · 6 years ago
  70. c106dd6 mark LWG#2953 as complete. No code changes required, but added a couple of extra tests. by Marshall Clow · 6 years ago
  71. 575d688 Update the failure annotations for the uncaught_exceptions test. The underlying abi library on some Mac OS versions does not support the plural uncaught_exceptions, so libc++ emulates it from the singlar; this means it will only return 0 or 1. by Marshall Clow · 6 years ago
  72. ec25143 Implement LWG #3017. list splice functions should use addressof by Marshall Clow · 6 years ago
  73. 8220dac Last week, someone noted that a couple of the time_point member functions were not constexpr. I looked, and they were right. They were made constexpr in p0505, so I looked at all the other bits in that paper to make sure that I didn't miss anything else. There were a couple methods in the synopsis that should have been marked constexpr, but the code was correct. by Marshall Clow · 6 years ago
  74. c4f0f1e Use addressof instead of operator& in make_shared. Fixes PR38729. As a drive-by, make the same change in raw_storage_iterator (twice). by Marshall Clow · 6 years ago
  75. cd04d45 [libc++] Fix handling of negated character classes in regex by Louis Dionne · 6 years ago
  76. 39ad1d1 [libc++] Remove race condition in std::async by Louis Dionne · 6 years ago
  77. ed6c20e Disable the aligned allocation test on old mac versions instead of XFAILing it by Reid Kleckner · 6 years ago
  78. c39fe08 Add diagnostics for min/max algorithms when a InputIterator is used. by Eric Fiselier · 6 years ago
  79. 4c90425 Fix Bug 38644: multimap::clear() missing exception specifier. Add noexcept tests for all the containers that have clear(). by Marshall Clow · 6 years ago
  80. 6c37235 Recommit r339943 - Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815 - with a fix for the sanitizer bots by Marshall Clow · 6 years ago
  81. 245791a Revert "Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815" by Vitaly Buka · 6 years ago
  82. aec9e0e [libc++] Use correct rand.eng.mers all-zeroes seed sequence fallback by Hubert Tong · 6 years ago
  83. fbd4673 Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815 by Marshall Clow · 6 years ago
  84. 43d7c79 Selectively import timespec_get into namespace std, since some C libraries don't have it. Reviewed as https://reviews.llvm.org/D50799 by Marshall Clow · 6 years ago
  85. a87d980 Mark the at_exit and at_quick_exit tests as unsupported under C++98 an 03, since those calls were introduced in C++11. They're already guarded by an ifdef in the code, so this is a 'belt-and-suspenders' change. by Marshall Clow · 6 years ago
  86. f27313a For FreeBSD, don't define _M in nasty_macros.hpp by Dimitry Andric · 6 years ago
  87. a1b4766 [libcxx] Fix XFAILs for aligned allocation tests on older OSX versions by Louis Dionne · 6 years ago
  88. 010c53f [libc++] Disable failing C11 feature tests for <cfloat> and <float.h> by Louis Dionne · 6 years ago
  89. cbc40b6 [libc++] Fix incorrect definition of TEST_HAS_C11_FEATURES by Louis Dionne · 6 years ago
  90. 4d52143 [libc++] Add missing #include in C11 features tests by Louis Dionne · 6 years ago
  91. 6699cd3 [libcxx] Mark charconv tests as failing for previous libcxx versions. by Volodymyr Sapsai · 6 years ago
  92. 836b7e9 [libc++] Enable aligned allocation based on feature test macro, irrespective of standard by Louis Dionne · 6 years ago
  93. 5428c6b [libcxx] [test] Avoid -Wunused-local-typedef in node_handle.pass.cpp. by Billy Robert O'Neal III · 6 years ago
  94. d39a48c [libcxx] [test] Allow a standard library that implements LWG 1203 in istream.rvalue/rvalue.pass.cpp by Billy Robert O'Neal III · 6 years ago
  95. 76dae9f [libcxx] [test] Remove nonportable locale assumption in basic.ios.members/narrow.pass.cpp by Billy Robert O'Neal III · 6 years ago
  96. d963dbf [libcxx] [test] Remove asserts that <cstddef> and <stdexcept> are included by <bitset> by Billy Robert O'Neal III · 6 years ago
  97. 8989fab [libcxx] [test] Add missing <stdexcept> in several tests. by Billy Robert O'Neal III · 6 years ago
  98. de13480 Mark LWG#2260 as complete. We already did the right thing, so I just added tests to ensure that we continue to DTRT. by Marshall Clow · 6 years ago
  99. e25adff Make my new test harness work w/c++03 by Marshall Clow · 6 years ago
  100. 3a225ef Update the changes to the array tests (that I committed yesterday) to use the test_comparison routines that I committed last week. NFC. by Marshall Clow · 6 years ago