1. e29fb4c Implement http://wg21.link/p0302r1: Removing Allocator Support in std::function. These functions never worked, and as far as I know, no one ever called them. by Marshall Clow · 8 years ago
  2. 698cce6 Add missing include in test; NFC. Thanks to Jonathan Wakely for the report. by Marshall Clow · 8 years ago
  3. ecb5332 Disable trivial pair copy/move tests when unsupported by Dimitry Andric · 8 years ago
  4. c69d8ca Correctly grant rebound limited_allocators friendship. by Eric Fiselier · 8 years ago
  5. 9bc0638 Remove incorrect XFAILS by Eric Fiselier · 8 years ago
  6. de8e3d3 Unbreak C++03 build by Eric Fiselier · 8 years ago
  7. a7b77eb Remove usages of _LIBCPP_CONSTEXPR under test/std by Eric Fiselier · 8 years ago
  8. 4775578 Remove usages of _ALIGNAS_TYPE by Eric Fiselier · 8 years ago
  9. 76f406d support --param=std=gnu++XX by Eric Fiselier · 8 years ago
  10. 6f6a960 Fix more C++11 constexpr issues in the tests by Eric Fiselier · 8 years ago
  11. 159b45f Fix nasty_containers.hpp for other stdlibs by Eric Fiselier · 8 years ago
  12. bf148f0 Fix use of C++14 constexpr in C++11 by Eric Fiselier · 8 years ago
  13. ae96260 Remove use of _VSTD::__invoke in the not_fn tests by Eric Fiselier · 8 years ago
  14. 028a209 Protect special members of NullBase archetype to avoid exposing them by Eric Fiselier · 8 years ago
  15. 35ce485 Implement N4606 optional by Eric Fiselier · 8 years ago
  16. ead5d40 Revert Add <optional>. Will recommit with better commit message by Eric Fiselier · 8 years ago
  17. fbc8016 Add <optional> header. by Eric Fiselier · 8 years ago
  18. 159b460 Fix two more tests that hang when testing against libstdc++ by Eric Fiselier · 8 years ago
  19. 4432d3f Prevent the test suite from hanging when run against libstdc++ by Eric Fiselier · 8 years ago
  20. fc6e622 Add mork workarounds for running the test suite against libstdc++ by Eric Fiselier · 8 years ago
  21. 5300359 Make it easier to run the libc++ test suite against libstdc++ by Eric Fiselier · 8 years ago
  22. 508f208 Fix LWG2683 - filesystem::copy() should always clear the user-provided error_code by Eric Fiselier · 8 years ago
  23. e2bd16c Fix std::pair on FreeBSD by Eric Fiselier · 8 years ago
  24. 05577c8 Fix incorrect exception handling behavior in the uninitialized algorithms by Eric Fiselier · 8 years ago
  25. e9115a1 Add tests to check that swap(std::function, std::function) is noexcept. This is LWG#2062, but we already do this. No changes to the library, just adding tests. by Marshall Clow · 8 years ago
  26. 8be2c5d Add tests for LWG2544. We already implement this; just adding tests to make sure that we keep doing it. by Marshall Clow · 8 years ago
  27. a244bb9 Provide a constexpr addressof with GCC 7. by Eric Fiselier · 8 years ago
  28. 3bf8a9c Fix linker script generation for in-tree builds by Eric Fiselier · 8 years ago
  29. cedbdd7 Remove all _LIBCPP_VERSION tests from under test/std by Eric Fiselier · 8 years ago
  30. fd1c9dd Purge all usages of _LIBCPP_STD_VER under test/std/algorithm by Eric Fiselier · 8 years ago
  31. daa895f Add missing <memory> include in test by Eric Fiselier · 8 years ago
  32. ef9e52b Add missing include in test_allocator.h by Eric Fiselier · 8 years ago
  33. 124ed40 [libc++] Fix stack_allocator by Eric Fiselier · 8 years ago
  34. ee0db89 Fix shadow warnings. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago
  35. 2c429be Fix various issues in std::any and the related tests. by Eric Fiselier · 8 years ago
  36. 45a9570 Remove MSVC workarounds. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago
  37. e3a71a2 [libcxx] Recover no-exceptions XFAILs - I by Asiri Rathnayake · 8 years ago
  38. f5293bc Comment out failing test while I figure out who is at fault by Marshall Clow · 8 years ago
  39. aead8da Make tests for is_empty better. No functional change. by Marshall Clow · 8 years ago
  40. 6f5d594 Add another append test for basic_string by Marshall Clow · 8 years ago
  41. 8f972f6 [libcxx] [test] Guard __has_include usage with a macro by Eric Fiselier · 8 years ago
  42. ec81081 Add tests to make sure that is_constructible<cv-void> is false. We already checked 'unqualified void'. This was brought up by LWG#2738 by Marshall Clow · 8 years ago
  43. 8fe453a [lit] Allow more file extensions for test cases. by Logan Chien · 8 years ago
  44. 89e826a Remove all instances of _LIBCPP_HAS_NO_RVALUE_REFERENCES from test/std/utilities by Eric Fiselier · 8 years ago
  45. cdac787 Replace test_throw.h header with a single test macro by Eric Fiselier · 8 years ago
  46. 66bdfe2 [libc++] Extension: Make `move` and `forward` constexpr in C++11. by Eric Fiselier · 8 years ago
  47. 8dc5b6e Update -verify test to use new static assert message by Eric Fiselier · 8 years ago
  48. 4e3e15a [libc++] Remove various C++03 feature test macros by Eric Fiselier · 8 years ago
  49. 1277962 Fix a few static_asserts that need extra parens on -03 by Marshall Clow · 8 years ago
  50. 6ac8de0 Implement proposed resolution for LWG#2758. Reviewed as D24446. Normally, I would wait for these to be voted upon at a committee meeting (November), but the current draft standard is broken, and this should fix it. (And if it doesn't, we want to know about it soonest) by Marshall Clow · 8 years ago
  51. 9473712 Fix incorrect include in is_error_code_enum.pass.cpp by Marshall Clow · 8 years ago
  52. db86684 Implement is_error_code_v and is_error_condition_v for c++17. Rework the tests for is_error_code and is_error_condition, since they were really lacking. Thanks to Alisdair for the heads-up that we were missing these. by Marshall Clow · 8 years ago
  53. 45d7731 Fix failure on 03 bot by Marshall Clow · 8 years ago
  54. 2fffe3a Add missing _v traits. is_bind_expression_v, is_placeholder_v and uses_allocator_v by Marshall Clow · 8 years ago
  55. 6e3bce5 [libcxx] Add missing c++98 xfail. NFC. by Asiri Rathnayake · 8 years ago
  56. 86f6997 [libcxx] Allow sanitizing libcxx with ASan+UBSan simultaneously by Kuba Brecka · 8 years ago
  57. 2f3771a [libcxx] Add a TSan regression test for a data race in call_once by Kuba Brecka · 8 years ago
  58. ccf7100 [libcxx] Fix a typo in test/libcxx/test/target_info.py that prevents running tests on Darwin with sanitizers by Kuba Brecka · 8 years ago
  59. 040945b [libcxx] Introduce an externally-threaded libc++ variant. by Asiri Rathnayake · 8 years ago
  60. 3a3836f Avoid compile error by giving the test type a user defined default constructor by Eric Fiselier · 8 years ago
  61. ac655ef Fix PR#30303 - no matching function for call to '__ptr_in_range' by Marshall Clow · 8 years ago
  62. db4d7e9 Improve constexpr tests for std::any by Eric Fiselier · 8 years ago
  63. b9231a2 Fix PR30260 - optional<const T> not working. by Eric Fiselier · 8 years ago
  64. d979eed Fix Bug 30240 - std::string: append(first, last) error when aliasing. Add test cases for append/insert/assign/replace while we're at it, and fix a similar bug in insert. by Marshall Clow · 8 years ago
  65. 226cd06 Apply curr_symbol.pass.cpp test fix to missed test case by Eric Fiselier · 8 years ago
  66. 4bc5e1f Fix bad locale test data when using the newest glibc by Eric Fiselier · 8 years ago
  67. 6efc20f Mark test as XFAIL for C++03, rather than providing a dummy pass. by Marshall Clow · 8 years ago
  68. 7f735c3 Fix PR30202 - notify_all_at_thread_exit seg faults if run from a raw pthread context. by Eric Fiselier · 8 years ago
  69. 76c3a05 Add "FLAKY_TEST" test directive to support re-running flaky tests. by Eric Fiselier · 8 years ago
  70. 235d71f Fix pair::operator=(TupleLike&&). by Eric Fiselier · 8 years ago
  71. 0ecda71 Revert r279953 - Fix pair::operator=(TupleLike&&) by Eric Fiselier · 8 years ago
  72. 15ac5e4 Fix pair::operator=(TupleLike&&). by Eric Fiselier · 8 years ago
  73. 917af0a Implement C++17 std::sample. by Eric Fiselier · 8 years ago
  74. 17c38db Mark LWG 2716 as complete - shuffle and sample disallows lvalue URNGs. by Eric Fiselier · 8 years ago
  75. 113315b Implement LWG 2711. Constrain path members. by Eric Fiselier · 8 years ago
  76. e0620e2 [CMake] Be more consistent about naming targets and components by Chris Bieneman · 8 years ago
  77. 98983c0 libcxx: Fix libcxx tests on aarch64 with libunwind by Adhemerval Zanella · 8 years ago
  78. a2586b3 Add missing include that caused a test failure on Windows. Thanks to STL for the patch. No functional change. by Marshall Clow · 8 years ago
  79. 8c22696 [CMake] Get libcxx building under LLVM/runtimes by Chris Bieneman · 8 years ago
  80. 546498c make the associative containers do the right thing for propogate_on_container_assignment. Fixes bug #29001. Tests are only for <map> right now - more complete tests will come when we revamp our allocator testing structure. by Marshall Clow · 8 years ago
  81. d4badbb Support allocators with explicit conversion constructors. Fixes bug #29000 by Marshall Clow · 8 years ago
  82. ea714e7 libcxx: Fix path.compare.pass expected result by Adhemerval Zanella · 8 years ago
  83. c2141df Fix new ASAN failures by Eric Fiselier · 8 years ago
  84. 314fd09 Use -O1 when testing with ASAN and MSAN to prevent Clang OOM errors. by Eric Fiselier · 8 years ago
  85. d6e36bb Remove test for the sign of a NaN - doesn't work on MIPS, not strictly legal. Fixes bug 28936 by Marshall Clow · 8 years ago
  86. 1f6a37d test: relax the FS test a slight bit to be more reliable by Saleem Abdulrasool · 8 years ago
  87. 1ed1df3 Unbreak C++03 build. by Eric Fiselier · 8 years ago
  88. 92741e2 Refactor test archetypes implementation. by Eric Fiselier · 8 years ago
  89. a60053b Add missing REQUIRES for C++14 by Eric Fiselier · 8 years ago
  90. e739d54 [libcxx] Add std::any by Eric Fiselier · 8 years ago
  91. 2d08bc9 Implement LWG 2148: Make non-enum default hash specialization well-formed by Eric Fiselier · 8 years ago
  92. 02e94f8 std:: quailfy the calls for cend/crend/cbegin/cend. Fixes bug 28927. by Marshall Clow · 8 years ago
  93. 3df1df1 test/hard_link_count(): Fix test on darwin by Matthias Braun · 8 years ago
  94. 9639abe Fix copy/move constructor annotation for the uses-allocator test types. by Eric Fiselier · 8 years ago
  95. 7f6e8e2 [libcxx] Add "flag" default arg: basic_regex ptr_size_flag ctor by Hubert Tong · 8 years ago
  96. 5f9ee49 Revert r277966. Forgot patch attribution. by Hubert Tong · 8 years ago
  97. 9bae734 [libcxx] Add "flag" default arg: basic_regex ptr_size_flag ctor by Hubert Tong · 8 years ago
  98. 2d9e2e2 Fix compile error due to mismatched iterator types. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago
  99. 60c8acc Fix an MSVC x64 compiler warning. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago
  100. 29bb84b Silence another occurrence of MSVC's suprious unused warning. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago