1. 47257c4 Add tests for unordered container tests and std::string by Eric Fiselier · 8 years ago
  2. 3678f7d Fix another unused warning by Eric Fiselier · 8 years ago
  3. 0e5ebbc Fix unused parameters and variables by Eric Fiselier · 8 years ago
  4. 9663ee4 Revert r289727 due to PR31384 by Eric Fiselier · 8 years ago
  5. bad1d6c Fix PR31378 - std::list::remove should not require a default constructible allocator. by Eric Fiselier · 8 years ago
  6. 18e56b4 [libcxx] Fix tuple construction/assignment from types derived from tuple/pair/array. by Eric Fiselier · 8 years ago
  7. 11f64dc Fix undefined behavior in container swap tests. by Eric Fiselier · 8 years ago
  8. e5bca2b Fix more uses of dynamic exception specifications in C++17 by Eric Fiselier · 8 years ago
  9. b61c998 Fix count_new.hpp to work w/o dynamic exception specifications by Eric Fiselier · 8 years ago
  10. aa1d62b [libcxx] [test] Add LIBCPP_ASSERT_NOEXCEPT/LIBCPP_ASSERT_NOT_NOEXCEPT, remove an unused variable. by Stephan T. Lavavej · 8 years ago
  11. e386ad3 Refactor uses_allocator test types for upcoming fixes by Eric Fiselier · 8 years ago
  12. 11715ba Put C++ ABI headers in a special build directory instead of the top level. by Eric Fiselier · 8 years ago
  13. ae5809a [libcxx] [test] D27268: Fix MSVC x64 warning C4267 "conversion from 'size_t' to 'int' [or 'unsigned int'], possible loss of data", part 2/4. by Stephan T. Lavavej · 8 years ago
  14. e2dbcaf [libcxx] [test] D27266: Remove spurious semicolons. by Stephan T. Lavavej · 8 years ago
  15. e041941 Fix __hash_table::max_size() on 32 bit systems by Eric Fiselier · 8 years ago
  16. ef3060e [libcxx] Fix max_size() across all containers by Eric Fiselier · 8 years ago
  17. 0373708 Add <variant> tests but disable them for libc++ by Eric Fiselier · 8 years ago
  18. 388ffe1 Adjust uses_alloc_types helpers for later changes by Eric Fiselier · 8 years ago
  19. e619862 [libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER. by Stephan T. Lavavej · 8 years ago
  20. 1c0757a Fix archetypes.hpp under libcpp-no-extensions and std level < 14 by Roger Ferrer Ibanez · 8 years ago
  21. b035d8f Silence unused parameter warnings in archetypes.hpp by Casey Carter · 8 years ago
  22. 3171202 Fix unreferenced parameters. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago
  23. 846edfb Update issue status for LWG 2744 by Eric Fiselier · 8 years ago
  24. c69d8ca Correctly grant rebound limited_allocators friendship. by Eric Fiselier · 8 years ago
  25. de8e3d3 Unbreak C++03 build by Eric Fiselier · 8 years ago
  26. 4775578 Remove usages of _ALIGNAS_TYPE by Eric Fiselier · 8 years ago
  27. 6f6a960 Fix more C++11 constexpr issues in the tests by Eric Fiselier · 8 years ago
  28. 159b45f Fix nasty_containers.hpp for other stdlibs by Eric Fiselier · 8 years ago
  29. bf148f0 Fix use of C++14 constexpr in C++11 by Eric Fiselier · 8 years ago
  30. 028a209 Protect special members of NullBase archetype to avoid exposing them by Eric Fiselier · 8 years ago
  31. 35ce485 Implement N4606 optional by Eric Fiselier · 8 years ago
  32. ead5d40 Revert Add <optional>. Will recommit with better commit message by Eric Fiselier · 8 years ago
  33. fbc8016 Add <optional> header. by Eric Fiselier · 8 years ago
  34. ef9e52b Add missing include in test_allocator.h by Eric Fiselier · 8 years ago
  35. 124ed40 [libc++] Fix stack_allocator by Eric Fiselier · 8 years ago
  36. 2c429be Fix various issues in std::any and the related tests. by Eric Fiselier · 8 years ago
  37. 45a9570 Remove MSVC workarounds. Patch from STL@microsoft.com by Eric Fiselier · 8 years ago
  38. 8f972f6 [libcxx] [test] Guard __has_include usage with a macro by Eric Fiselier · 8 years ago
  39. cdac787 Replace test_throw.h header with a single test macro by Eric Fiselier · 9 years ago
  40. 4e3e15a [libc++] Remove various C++03 feature test macros by Eric Fiselier · 9 years ago
  41. 040945b [libcxx] Introduce an externally-threaded libc++ variant. by Asiri Rathnayake · 9 years ago
  42. 4bc5e1f Fix bad locale test data when using the newest glibc by Eric Fiselier · 9 years ago
  43. 917af0a Implement C++17 std::sample. by Eric Fiselier · 9 years ago
  44. 113315b Implement LWG 2711. Constrain path members. by Eric Fiselier · 9 years ago
  45. d4badbb Support allocators with explicit conversion constructors. Fixes bug #29000 by Marshall Clow · 9 years ago
  46. c2141df Fix new ASAN failures by Eric Fiselier · 9 years ago
  47. 92741e2 Refactor test archetypes implementation. by Eric Fiselier · 9 years ago
  48. e739d54 [libcxx] Add std::any by Eric Fiselier · 9 years ago
  49. 9639abe Fix copy/move constructor annotation for the uses-allocator test types. by Eric Fiselier · 9 years ago
  50. 29bb84b Silence another occurrence of MSVC's suprious unused warning. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
  51. e1445fd Implement the std::pair parts of "Improving pair and tuple". Completes N4387. by Eric Fiselier · 9 years ago
  52. c672a74 Implement P0040r3: Extending memory management tools by Eric Fiselier · 9 years ago
  53. b5bdc07 Unbreak traits tests by handling differences between version macros in clang/apple-clang. by Eric Fiselier · 9 years ago
  54. f5750d5 Add checkpoint diagnostics to help diagnose buildbot failures. by Eric Fiselier · 9 years ago
  55. 51d7e8e Always use the allocator to construct/destruct elements of a deque/vector. Fixes PR#28412. Thanks to Jonathan Wakely for the report. by Marshall Clow · 9 years ago
  56. 928a58f Fix UB in uses_alloc_types.hpp by Eric Fiselier · 9 years ago
  57. 83d7ca9 Implement P0163r0. Add shared_ptr::weak_type. by Eric Fiselier · 9 years ago
  58. 5781358 Implement p0337r0. Delete operator= for polymorphic_allocator. by Eric Fiselier · 9 years ago
  59. 8c4dc32 Add [[noreturn]] attribute to throw_bad_alloc_helper(). by Eric Fiselier · 9 years ago
  60. cef97f9 Use correct Clang feature names. I got them wrong in the previous commit by Eric Fiselier · 9 years ago
  61. 8905b11 Support old GCC exception and rtti detection macros by Eric Fiselier · 9 years ago
  62. b5fb8c9 Add tests for RTTI/exceptions test macros. by Eric Fiselier · 9 years ago
  63. 5cdd543 Fix exception/rtti detection in tests. by Eric Fiselier · 9 years ago
  64. 506f9d5 Cleanup [list.modifiers] tests. by Eric Fiselier · 9 years ago
  65. ff58059 Suppress stupid and incorrect MSVC warning. patch from STL@microsoft.com by Eric Fiselier · 9 years ago
  66. 374a33d Allow the libc++ build/source paths to contain symlinks. by Eric Fiselier · 9 years ago
  67. ee49613 Implement std::experimental::propagate_const from LFTS v2 by Jonathan Coe · 9 years ago
  68. 29c26b9 Fix SleepFor(...) helper when a monotonic clock is not available. by Eric Fiselier · 9 years ago
  69. 87a1065 Use monotonic clock in synthetic SleepFor test helper by Eric Fiselier · 9 years ago
  70. 880e38b Fix 3 bugs in filesystem tests and implementation. by Eric Fiselier · 9 years ago
  71. 40d9e09 Get filesystem tests passing for single-threaded configurations. by Eric Fiselier · 9 years ago
  72. 6e9a694 Add Filesystem TS -- Complete by Eric Fiselier · 9 years ago
  73. 629aa56 [libcxx] [test] In test/support/test_allocator.h, fix construct() to avoid moving immovable types. by Eric Fiselier · 9 years ago
  74. d24c465 Replace __cplusplus comparisons and dialect __has_feature checks with TEST_STD_VER. by Eric Fiselier · 9 years ago
  75. bfdae20 Fix warnings in tests. by Eric Fiselier · 9 years ago
  76. 84acb1e Remove trailing whitespace in test suite. Approved by Marshall Clow. by Eric Fiselier · 9 years ago
  77. 2aad5d5 Fix bug in test allocator that incorrectly computed the allocation size by Eric Fiselier · 9 years ago
  78. dcb35ad Add missing include to test_iterators.h by Eric Fiselier · 9 years ago
  79. 3cc263d Remove C++11 feature macros in tests. Use TEST_STD_VER instead. by Eric Fiselier · 9 years ago
  80. 257fd69 Add <experimental/memory_resource> by Eric Fiselier · 9 years ago
  81. 0cf277c Don't use std::__clz in 'test/support/hexfloat.h'. by Eric Fiselier · 9 years ago
  82. 1e5a4a4 Fix or move various non-standard tests. by Eric Fiselier · 9 years ago
  83. 7aa3806 Fix possible test breakage for MinGW by Eric Fiselier · 9 years ago
  84. 59f8126 Fix get_temp_file_name() to compile on Windows. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
  85. b6e757e Add a return value for nasty_mutex::operator&. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
  86. 375e2f6 Guard libc++ specific c.__invariants() tests in LIBCPP_ASSERT macros by Eric Fiselier · 9 years ago
  87. bda804e Remove names of unreferenced parameters. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
  88. 4596c29 Guard Clang and GCC specific pragmas. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
  89. 5ccbc48 Fix some non-standard parts of our test suite. Reported by STL by Eric Fiselier · 9 years ago
  90. dc414cd Teach map/unordered_map how to optimize 'emplace(Key, T)'. by Eric Fiselier · 9 years ago
  91. 83c9dc1 Extract key to avoid preemptive mallocs in insert/emplace in associative containers by Eric Fiselier · 9 years ago
  92. 21f3b4c Update container_test_types.h and cleanup the related tests by Eric Fiselier · 9 years ago
  93. d124b5b Missed this file in previous checkin by Marshall Clow · 9 years ago
  94. 410ed30 Fix LWG issue 2469 - Use piecewise construction in unordered_map::operator[]. by Eric Fiselier · 9 years ago
  95. ab41482 Revert r260514 because it has a bogus commit message. by Eric Fiselier · 9 years ago
  96. 907ec40 separate nested >> by Eric Fiselier · 9 years ago
  97. ba41d7e Teach __hash_table how to handle unordered_map's __hash_value_type. by Eric Fiselier · 9 years ago
  98. 2960ae2 Teach __hash_table how to handle unordered_map's __hash_value_type. by Eric Fiselier · 9 years ago
  99. b8f31a1 Got the test backwards in r258279. Fixed that and de-tabbed by Marshall Clow · 9 years ago
  100. 85d4c2a Fix up the tests I added for string exceptions to be skipped when exceptions are disabled by Marshall Clow · 9 years ago