1. 4a5c6f3 [libcxx] Blind attempt to fix harmless leak in nodiscard_extensions.pass.cpp test by Roman Lebedev · 6 years ago
  2. caf40ae [libc++] Add _LIBCPP_ENABLE_NODISCARD and _LIBCPP_NODISCARD_EXT to allow pre-C++2a [[nodiscard]] by Roman Lebedev · 6 years ago
  3. 087a509 Fix diagnostic regex in variant tests to tolerate older clang versions by Eric Fiselier · 6 years ago
  4. e59d098 Revert "Implement LWG 2221 - No formatted output operator for nullptr." by Volodymyr Sapsai · 6 years ago
  5. f06032b Implement LWG 2221 - No formatted output operator for nullptr. Reviewed as https://reviews.llvm.org/D44263 by Marshall Clow · 6 years ago
  6. 989927c Don't require relops on variant alternatives to all return the same type. by Eric Fiselier · 6 years ago
  7. 699cb5b Remove unused include of "verbose_assert.h" by Marshall Clow · 6 years ago
  8. 1755c75 Mark LWG#3102 as complete. No code changes, but I updated a test or two by Marshall Clow · 6 years ago
  9. 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
  10. c106dd6 mark LWG#2953 as complete. No code changes required, but added a couple of extra tests. by Marshall Clow · 6 years ago
  11. 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
  12. ec25143 Implement LWG #3017. list splice functions should use addressof by Marshall Clow · 6 years ago
  13. 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
  14. 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
  15. cd04d45 [libc++] Fix handling of negated character classes in regex by Louis Dionne · 6 years ago
  16. 39ad1d1 [libc++] Remove race condition in std::async by Louis Dionne · 6 years ago
  17. ed6c20e Disable the aligned allocation test on old mac versions instead of XFAILing it by Reid Kleckner · 6 years ago
  18. c39fe08 Add diagnostics for min/max algorithms when a InputIterator is used. by Eric Fiselier · 6 years ago
  19. 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
  20. 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
  21. 245791a Revert "Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815" by Vitaly Buka · 6 years ago
  22. aec9e0e [libc++] Use correct rand.eng.mers all-zeroes seed sequence fallback by Hubert Tong · 6 years ago
  23. fbd4673 Establish the <bit> header. NFC yet. Reviewed as https://reviews.llvm.org/D50815 by Marshall Clow · 6 years ago
  24. 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
  25. 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
  26. f27313a For FreeBSD, don't define _M in nasty_macros.hpp by Dimitry Andric · 6 years ago
  27. a1b4766 [libcxx] Fix XFAILs for aligned allocation tests on older OSX versions by Louis Dionne · 6 years ago
  28. 010c53f [libc++] Disable failing C11 feature tests for <cfloat> and <float.h> by Louis Dionne · 6 years ago
  29. cbc40b6 [libc++] Fix incorrect definition of TEST_HAS_C11_FEATURES by Louis Dionne · 6 years ago
  30. 4d52143 [libc++] Add missing #include in C11 features tests by Louis Dionne · 6 years ago
  31. 6699cd3 [libcxx] Mark charconv tests as failing for previous libcxx versions. by Volodymyr Sapsai · 6 years ago
  32. 836b7e9 [libc++] Enable aligned allocation based on feature test macro, irrespective of standard by Louis Dionne · 6 years ago
  33. 5428c6b [libcxx] [test] Avoid -Wunused-local-typedef in node_handle.pass.cpp. by Billy Robert O'Neal III · 6 years ago
  34. 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
  35. 76dae9f [libcxx] [test] Remove nonportable locale assumption in basic.ios.members/narrow.pass.cpp by Billy Robert O'Neal III · 6 years ago
  36. d963dbf [libcxx] [test] Remove asserts that <cstddef> and <stdexcept> are included by <bitset> by Billy Robert O'Neal III · 6 years ago
  37. 8989fab [libcxx] [test] Add missing <stdexcept> in several tests. by Billy Robert O'Neal III · 6 years ago
  38. 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
  39. e25adff Make my new test harness work w/c++03 by Marshall Clow · 6 years ago
  40. 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
  41. 88f5d7a Implement P1023: constexpr comparison operators for std::array by Marshall Clow · 6 years ago
  42. 48282b6 Implement P0887: The identity metafunction by Marshall Clow · 6 years ago
  43. 80f0ca0 [libc++] Fix build failures after merging <charconv> by Zhihao Yuan · 6 years ago
  44. dc38e97 [libc++][C++17] Elementary string conversions for integral types by Zhihao Yuan · 6 years ago
  45. 36fc737 First half of C++17's splicing maps and sets by Erik Pilkington · 6 years ago
  46. ea96e3a Final bit of P0063 - make sure that aligned_alloc is available when the underlying C library supports it by Marshall Clow · 6 years ago
  47. 4983a7a Test for the presence of a bunch of new macros for c++17. These macros come from C11. Part of P0063 by Marshall Clow · 6 years ago
  48. 8a16d40 import timespec and timespec_get into namespace std if we're under c++17 or later AND the underlying C library has them. Fixes PR#38220, but doesn't implement all of P0063 yet. by Marshall Clow · 6 years ago
  49. 1bef51a Introduce a new test macro TEST_HAS_C11_FEATURES which is set when the underlying C library has C11 features. In C++17, we use those features. <__config> defines a similar macro, _LIBCPP_HAS_C11_FEATURES, but we don't want to use that in the library-independent parts of the tests, so define the new one. Also add a libc++-specific test to make sure the two stay in sync. by Marshall Clow · 6 years ago
  50. 379cbeb [libcxx] fix `>> 42` UB in <experimental/simd> by Tim Shen · 6 years ago
  51. 154f393 Re-apply "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  52. b6244cf Revert "[libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to." by Tim Shen · 6 years ago
  53. 3732995 [libcxx] implement <simd> ABI for Clang/GCC vector extension, constructors, copy_from and copy_to. by Tim Shen · 6 years ago
  54. bc3f403 Add libc++fs to the test deps, and not to the target 'cxx'. by Eric Fiselier · 6 years ago
  55. 0be5527 Attempt to unbreak *all the bots* by Eric Fiselier · 6 years ago
  56. a0866c5 Implement <filesystem> by Eric Fiselier · 6 years ago
  57. cff3d7b Correct comment about stat truncating st_mtimespec to seconds by Eric Fiselier · 6 years ago
  58. 6655abb Workaround OS X 10.11 behavior where stat truncates st_mtimespec to seconds. by Eric Fiselier · 6 years ago
  59. 8940394 Add print statements to help debugging by Eric Fiselier · 6 years ago
  60. 98e5322 Work around GCC bug in constexpr function by Eric Fiselier · 6 years ago
  61. 0c29afa Remove test which shouldn't have been committed by Eric Fiselier · 6 years ago
  62. 81872e9 [libc++] Use __int128_t to represent file_time_type. by Eric Fiselier · 6 years ago
  63. e428b57 Fix diagnostic test to tolerate Clang diagnosing it as well. by Eric Fiselier · 6 years ago
  64. 8410c81 Fix bugs in create_directory implementation. by Eric Fiselier · 6 years ago
  65. bb00305 Fix missing includes in format_string.hpp helper by Eric Fiselier · 6 years ago
  66. d3e32d2 New test support for comparisons. Reviewed as https://reviews.llvm.org/D49773 by Marshall Clow · 6 years ago
  67. 2493db4 Make <experimental/filesystem> explicitly require C++11. by Eric Fiselier · 6 years ago
  68. 2be41bb Stop wrapping __has_include in another macro by Alexander Richardson · 6 years ago
  69. dfd0874 Disable 'suggest braces' warnings for std::array in tests by Marshall Clow · 6 years ago
  70. fbd3e84 Implement <span>. Reviewed as https://reviews.llvm.org/D49338 by Marshall Clow · 6 years ago
  71. f581ed2 Fix accidentally removed test. by Eric Fiselier · 6 years ago
  72. ba01d96 Fix use of C++14 syntax in C++11 filesystem tests. by Eric Fiselier · 6 years ago
  73. 0ddb77a Implement filesystem_error::what() and improve reporting. by Eric Fiselier · 6 years ago
  74. 1061b65 fix test failures with older clang versions by Eric Fiselier · 6 years ago
  75. 70c866b Implement a better copy_file. by Eric Fiselier · 6 years ago
  76. 77c9cf4 Fix two test failures in <experimental/filesystem> by Eric Fiselier · 6 years ago
  77. e274f43 [libc++] Implement Directory Entry Caching -- Sort of. by Eric Fiselier · 6 years ago
  78. 9765ed0 Fix a couple of 'unused variable' warnings in a vector test. NFC. by Marshall Clow · 6 years ago
  79. fbb1e61 Turns out that wide literals U"xxx" and u"xxx" are c++11 and later. by Marshall Clow · 6 years ago
  80. 88709a3 Same reversed ifdef happened twice. Test fix only, NFC to the library. by Marshall Clow · 6 years ago
  81. 839b1a6 Fix a test #ifdef that was reversed. NFC to the library. by Marshall Clow · 6 years ago
  82. 8df0521 [test] two small cleanups: by Casey Carter · 6 years ago
  83. 64c10d0 Implement LWG 2946, 3075 and 3076. Reviewed as https://reviews.llvm.org/D48616 by Marshall Clow · 6 years ago
  84. 9165f9d [libcxx] [test] Strip trailing whitespace. NFC. by Stephan T. Lavavej · 6 years ago
  85. 9c0cb24 [libcxx] [test] Update msvc_stdlib_force_include.hpp. by Stephan T. Lavavej · 6 years ago
  86. c19d47a Mark the test using <experimental/memory_resource> to require c++experimental. by Volodymyr Sapsai · 6 years ago
  87. d54a868 Fix test failures after r334053. by Eric Fiselier · 6 years ago
  88. 301518c Fix PR37694 - std::vector doesn't correctly move construct allocators. by Eric Fiselier · 6 years ago
  89. c8846cc Filesystem tests: un-confuse write time by JF Bastien · 6 years ago
  90. e4063ad Mark deduction guide tests as failing on apple-clang-9 by JF Bastien · 6 years ago
  91. 1e6ac5e Fix embarrasing typo in uncaught_exceptions. Update tests to really test this. Thanks to Peter Klotz for calling my attention to this. by Marshall Clow · 6 years ago
  92. 40a29e7 LWG 2969 "polymorphic_allocator::construct() shouldn't pass resource()" by Eric Fiselier · 6 years ago
  93. d1e11a1 Fix up the final bits of breakage due to clang v5 generating bad implicit template deduction guides - specifically for copy-ctors by Marshall Clow · 6 years ago
  94. afdadcd Mark the template deduction tests as UNSUPPORTED on clang 5, because it deduces the wrong type. by Marshall Clow · 6 years ago
  95. 4b72294 Revert "Add nonnull; use it for atomics" by JF Bastien · 6 years ago
  96. 895c4f3 Fix GCC handling of ATOMIC_VAR_INIT by JF Bastien · 6 years ago
  97. 8bacb94 Add nonnull; use it for atomics by JF Bastien · 6 years ago
  98. adf7887 Fix optional<char> test breakage by JF Bastien · 6 years ago
  99. 3dfc68d Fix array deduction guide test breakage by JF Bastien · 6 years ago
  100. 599bf43 Fix optional deduction guide test breakage by JF Bastien · 6 years ago