1. e715470 Implement C++17 std::sample. by Eric Fiselier · 9 years ago
  2. 0404117 Mark LWG 2716 as complete - shuffle and sample disallows lvalue URNGs. by Eric Fiselier · 9 years ago
  3. 1662951 Fix portability issues in <random> tests. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
  4. e46c088 Implement LWG#2688: 'clamp misses preconditions and has extraneous condition on result'. We already did this, just added tests by Marshall Clow · 9 years ago
  5. 2e0e3df Add array bounds assertions to satisfy MSVC's /analyze flag. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
  6. 56f23a3 Move remaining _LIBCPP_VERSION tests into test/libcxx by Eric Fiselier · 9 years ago
  7. f2f2a63 Replace __cplusplus comparisons and dialect __has_feature checks with TEST_STD_VER. by Eric Fiselier · 9 years ago
  8. 981986c [libcxx] Fix c++98 test failures. by Asiri Rathnayake · 9 years ago
  9. d04c685 Remove trailing whitespace in test suite. Approved by Marshall Clow. by Eric Fiselier · 9 years ago
  10. 7626f77 Remove names of unreferenced parameters. Patch from STL@microsoft.com by Eric Fiselier · 10 years ago
  11. 0d62791 Add braces, move braces, and rename variables to avoid shadowing. Patch from STL@microsoft.com by Eric Fiselier · 10 years ago
  12. 146c14a Implement P0025R0: 'An algorithm to clamp a value between a pair of boundary values' for C++17 by Marshall Clow · 10 years ago
  13. 4063113 Change some #ifdefs to #if - thanks to Dexon for thge catch. by Marshall Clow · 10 years ago
  14. adfdae1 Fix a self-move bug in inplace_merge. Thanks to Ted and Dexon for the report and the suggested fix. by Marshall Clow · 10 years ago
  15. 19fa337 Fix warnings in test/std/algorithms by Eric Fiselier · 10 years ago
  16. 0b0671a Fix for LWG Issue 2369: constexpr max(initializer_list) vs max_element by Marshall Clow · 10 years ago
  17. 5f15a8b Need to wrap a bit in an ifdef, since there are no initializer_lists in C++03 by Marshall Clow · 11 years ago
  18. 002144f Fix PR 22541: When values are equal, minmax should return the rightmost one in the initializer_list by Marshall Clow · 11 years ago
  19. 5154402 [libcxx] Properly convert the count arguments to the *_n algorithms before use. by Eric Fiselier · 11 years ago
  20. 7e187f1 Test commit: remove whitespace at EOL. by Dimitry Andric · 11 years ago
  21. b9595b7 Fix PR#22433. The algorithm is_partitioned was testing an item in the middle of the sequence twice. by Marshall Clow · 11 years ago
  22. 0b48cf9 Fix PR#22427. The implementation of inplace_merge had a \'small data set\' optimization; if either half of the merge was small (i.e, less than 9 items), it did an inplace merge rather than allocating a buffer and doing a faster/smarter merge. However, this failed to satisfy the complexity requirements in the standard. Remove that code. Add tests to check the complexity, and add the same tests for std::merge, since we are in that section of the test suite anyway. by Marshall Clow · 11 years ago
  23. c57d98a Removed some tabs that snuck into the test suite. No functionality change by Marshall Clow · 11 years ago
  24. d632356 Fix PR 22106; make std::swap work for multi-dimensional arrays. Thanks to Peter Griess for the report and suggested fix by Marshall Clow · 11 years ago
  25. 5a83710 Move test into test/std subdirectory. by Eric Fiselier · 11 years ago