summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/algorithms
Commit message (Expand)AuthorAgeFilesLines
...
* Fix PR#35119 : set_union misbehaves with move_iterators. Thanks to Denis Yaro...Marshall Clow2017-10-301-0/+44
* Fix test for C++03Marshall Clow2017-08-291-3/+4
* Fix PR31166: std::inplace_merge seems to be unstable. Thanks to Jan Wilken DÃ...Marshall Clow2017-08-281-0/+21
* [libcxx] [test] Change comments to say C++ instead of c++. NFC.Stephan T. Lavavej2017-07-292-2/+2
* [libcxx] [test] Untabify, NFC.Stephan T. Lavavej2017-07-297-47/+47
* [libcxx] [test] Strip trailing whitespace. NFC.Stephan T. Lavavej2017-06-201-5/+5
* Add non-parallel version of for_each_n (+tests) from the Parallelism TSMarshall Clow2017-05-251-0/+61
* [libcxx] [test] Strip trailing whitespace. NFC.Stephan T. Lavavej2017-05-044-4/+4
* Cleanup _LIBCPP_HAS_NO_<c++11-feature> in algorithmEric Fiselier2017-04-1815-101/+63
* Update the algorithm tests to not use the (deprecated) function binders. No f...Marshall Clow2017-03-237-14/+42
* Use 'REQUIRES: c++98 || c++03 || c++11 || c++14' instead of the deprecated 'R...Marshall Clow2017-03-232-2/+2
* Remove random_shuffle in C++17. Please use shuffle instead. If you have to, ...Marshall Clow2017-03-232-0/+2
* Stop using random_shuffle in the libc++ test suite. It's going to be removed ...Marshall Clow2017-02-0727-35/+116
* Enable the -Wsign-compare warning to better support MSVCEric Fiselier2016-12-1117-97/+102
* [libcxx] [test] Fix MSVC warning C4244 "conversion from 'X' to 'Y', possible ...Stephan T. Lavavej2016-12-083-3/+10
* [libcxx] [test] D27025: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-062-2/+2
* [libcxx] [test] D27023: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-065-7/+7
* [libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-061-3/+4
* Work around more -Wshadow warningsEric Fiselier2016-12-031-1/+1
* [libcxx] [test] D27027: Strip trailing whitespace.Stephan T. Lavavej2016-11-232-4/+4
* [libcxx] [test] D27018: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-11-231-1/+1
* [libcxx] [test] D27015: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-11-2321-29/+29
* [libcxx] [test] D27014: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-11-234-6/+10
* [libcxx] [test] D27013: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-11-238-8/+16
* [libcxx] [test] D26816: Fix non-Standard assumptions when testing sample().Stephan T. Lavavej2016-11-181-3/+14
* Add missing include in test; NFC. Thanks to Jonathan Wakely for the report.Marshall Clow2016-10-131-0/+1
* Purge all usages of _LIBCPP_STD_VER under test/std/algorithmEric Fiselier2016-10-0817-121/+132
* Implement C++17 std::sample.Eric Fiselier2016-08-283-0/+244
* Mark LWG 2716 as complete - shuffle and sample disallows lvalue URNGs.Eric Fiselier2016-08-281-1/+1
* Fix portability issues in <random> tests. Patch from STL@microsoft.comEric Fiselier2016-07-243-5/+16
* Implement LWG#2688: 'clamp misses preconditions and has extraneous condition ...Marshall Clow2016-06-302-4/+135
* Add array bounds assertions to satisfy MSVC's /analyze flag. Patch from STL@m...Eric Fiselier2016-06-262-0/+8
* Move remaining _LIBCPP_VERSION tests into test/libcxxEric Fiselier2016-06-221-20/+0
* Replace __cplusplus comparisons and dialect __has_feature checks with TEST_ST...Eric Fiselier2016-06-146-12/+12
* [libcxx] Fix c++98 test failures.Asiri Rathnayake2016-06-032-2/+2
* Remove trailing whitespace in test suite. Approved by Marshall Clow.Eric Fiselier2016-06-0113-20/+20
* Remove names of unreferenced parameters. Patch from STL@microsoft.comEric Fiselier2016-04-281-1/+1
* Add braces, move braces, and rename variables to avoid shadowing. Patch from ...Eric Fiselier2016-04-281-0/+2
* Implement P0025R0: 'An algorithm to clamp a value between a pair of boundary ...Marshall Clow2016-03-072-0/+121
* Change some #ifdefs to #if - thanks to Dexon for thge catch.Marshall Clow2015-07-302-4/+4
* Fix a self-move bug in inplace_merge. Thanks to Ted and Dexon for the report ...Marshall Clow2015-07-292-10/+69
* Fix warnings in test/std/algorithmsEric Fiselier2015-07-185-16/+15
* Fix for LWG Issue 2369: constexpr max(initializer_list) vs max_elementMarshall Clow2015-05-106-0/+89
* Need to wrap a bit in an ifdef, since there are no initializer_lists in C++03Marshall Clow2015-02-111-0/+2
* Fix PR 22541: When values are equal, minmax should return the rightmost one i...Marshall Clow2015-02-111-0/+35
* [libcxx] Properly convert the count arguments to the *_n algorithms before use.Eric Fiselier2015-02-105-11/+30
* Test commit: remove whitespace at EOL.Dimitry Andric2015-02-051-1/+1
* Fix PR#22433. The algorithm is_partitioned was testing an item in the middle ...Marshall Clow2015-02-021-5/+24
* Fix PR#22427. The implementation of inplace_merge had a \'small data set\' op...Marshall Clow2015-02-022-3/+12
* Removed some tabs that snuck into the test suite. No functionality changeMarshall Clow2015-01-283-15/+15
OpenPOWER on IntegriCloud