- 5d91f31 [libcxx] [test] Change comments to say C++ instead of c++. NFC. by Stephan T. Lavavej · 8 years ago
- a686caa [libcxx] [test] Untabify, NFC. by Stephan T. Lavavej · 8 years ago
- b836deb [libcxx] [test] Strip trailing whitespace. NFC. by Stephan T. Lavavej · 8 years ago
- 10411c1 Add non-parallel version of for_each_n (+tests) from the Parallelism TS by Marshall Clow · 8 years ago
- 5594426 [libcxx] [test] Strip trailing whitespace. NFC. by Stephan T. Lavavej · 9 years ago
- 6b17a7b Cleanup _LIBCPP_HAS_NO_<c++11-feature> in algorithm by Eric Fiselier · 9 years ago
- 50e32f5 Update the algorithm tests to not use the (deprecated) function binders. No functional change. by Marshall Clow · 9 years ago
- 699c414 Use 'REQUIRES: c++98 || c++03 || c++11 || c++14' instead of the deprecated 'REQUIRES-ANY: c++98, c++03, c++11, c++14' by Marshall Clow · 9 years ago
- 03b862f Remove random_shuffle in C++17. Please use shuffle instead. If you have to, you cant get it back by defining _LIBCPP_ENABLE_CXX17_REMOVED_RANDOM_SHUFFLE before including any libc++ headers. by Marshall Clow · 9 years ago
- 426546e Stop using random_shuffle in the libc++ test suite. It's going to be removed in c++17. Use shuffle() instead. No change to libc++, just the tests. by Marshall Clow · 9 years ago
- a2cd270 Enable the -Wsign-compare warning to better support MSVC by Eric Fiselier · 9 years ago
- f1cc7ff [libcxx] [test] Fix MSVC warning C4244 "conversion from 'X' to 'Y', possible loss of data", part 6/7. by Stephan T. Lavavej · 9 years ago
- 43d9250 [libcxx] [test] D27025: Fix MSVC warning C4389 "signed/unsigned mismatch", part 12/12. by Stephan T. Lavavej · 9 years ago
- 3bea618 [libcxx] [test] D27023: Fix MSVC warning C4389 "signed/unsigned mismatch", part 10/12. by Stephan T. Lavavej · 9 years ago
- 2120882 [libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", part 9/12. by Stephan T. Lavavej · 9 years ago
- 29616b3 Work around more -Wshadow warnings by Eric Fiselier · 9 years ago
- e33c0b0 [libcxx] [test] D27027: Strip trailing whitespace. by Stephan T. Lavavej · 9 years ago
- bdf8bae [libcxx] [test] D27018: Fix MSVC warning C4018 "signed/unsigned mismatch", part 5/12. by Stephan T. Lavavej · 9 years ago
- 9a65a47 [libcxx] [test] D27015: Fix MSVC warning C4018 "signed/unsigned mismatch", part 3/12. by Stephan T. Lavavej · 9 years ago
- 388c2a8 [libcxx] [test] D27014: Fix MSVC warning C4018 "signed/unsigned mismatch", part 2/12. by Stephan T. Lavavej · 9 years ago
- a9bcd3d [libcxx] [test] D27013: Fix MSVC warning C4018 "signed/unsigned mismatch", part 1/12. by Stephan T. Lavavej · 9 years ago
- 0252201 [libcxx] [test] D26816: Fix non-Standard assumptions when testing sample(). by Stephan T. Lavavej · 9 years ago
- 698cce6 Add missing include in test; NFC. Thanks to Jonathan Wakely for the report. by Marshall Clow · 9 years ago
- fd1c9dd Purge all usages of _LIBCPP_STD_VER under test/std/algorithm by Eric Fiselier · 9 years ago
- 917af0a Implement C++17 std::sample. by Eric Fiselier · 9 years ago
- 17c38db Mark LWG 2716 as complete - shuffle and sample disallows lvalue URNGs. by Eric Fiselier · 9 years ago
- aafdbda Fix portability issues in <random> tests. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 0b02cf8 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
- 256f000 Add array bounds assertions to satisfy MSVC's /analyze flag. Patch from STL@microsoft.com by Eric Fiselier · 9 years ago
- 22bff1a Move remaining _LIBCPP_VERSION tests into test/libcxx by Eric Fiselier · 9 years ago
- d24c465 Replace __cplusplus comparisons and dialect __has_feature checks with TEST_STD_VER. by Eric Fiselier · 9 years ago
- 1575e3e [libcxx] Fix c++98 test failures. by Asiri Rathnayake · 9 years ago
- 84acb1e Remove trailing whitespace in test suite. Approved by Marshall Clow. by Eric Fiselier · 9 years ago
- bda804e Remove names of unreferenced parameters. Patch from STL@microsoft.com by Eric Fiselier · 10 years ago
- 849c551 Add braces, move braces, and rename variables to avoid shadowing. Patch from STL@microsoft.com by Eric Fiselier · 10 years ago
- 3e0808e Implement P0025R0: 'An algorithm to clamp a value between a pair of boundary values' for C++17 by Marshall Clow · 10 years ago
- 36dc080 Change some #ifdefs to #if - thanks to Dexon for thge catch. by Marshall Clow · 10 years ago
- a379576 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
- 3a07a2f Fix warnings in test/std/algorithms by Eric Fiselier · 10 years ago
- 928735a Fix for LWG Issue 2369: constexpr max(initializer_list) vs max_element by Marshall Clow · 10 years ago
- e7d3925 Need to wrap a bit in an ifdef, since there are no initializer_lists in C++03 by Marshall Clow · 11 years ago
- 3024f86 Fix PR 22541: When values are equal, minmax should return the rightmost one in the initializer_list by Marshall Clow · 11 years ago
- 31cb7fe [libcxx] Properly convert the count arguments to the *_n algorithms before use. by Eric Fiselier · 11 years ago
- e64ec52 Test commit: remove whitespace at EOL. by Dimitry Andric · 11 years ago
- a0ec4b7 Fix PR#22433. The algorithm is_partitioned was testing an item in the middle of the sequence twice. by Marshall Clow · 11 years ago
- 4c2684c 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
- eea9d20 Removed some tabs that snuck into the test suite. No functionality change by Marshall Clow · 11 years ago
- fd8ed7f 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
- a90c6dd Move test into test/std subdirectory. by Eric Fiselier · 11 years ago