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