Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix portability issues in <random> tests. Patch from STL@microsoft.com | Eric Fiselier | 2016-07-24 | 3 | -5/+16 |
| | | | | llvm-svn: 276585 | ||||
* | Remove trailing whitespace in test suite. Approved by Marshall Clow. | Eric Fiselier | 2016-06-01 | 1 | -1/+1 |
| | | | | llvm-svn: 271435 | ||||
* | Fix warnings in test/std/algorithms | Eric Fiselier | 2015-07-18 | 1 | -5/+5 |
| | | | | llvm-svn: 242626 | ||||
* | [libcxx] Properly convert the count arguments to the *_n algorithms before use. | Eric Fiselier | 2015-02-10 | 3 | -11/+20 |
| | | | | | | | | | | | | | | | | | Summary: The requirement on the `Size` type passed to *_n algorithms is that it is convertible to an integral type. This means we can't use a variable of type `Size` directly. Instead we need to convert it to an integral type first. The problem is finding out what integral type to convert it to. `__convert_to_integral` figures out what integral type to convert it to and performs the conversion, It also promotes the resulting integral type so that it is at least as big as an integer. `__convert_to_integral` also has a special case for converting enums. This should only work on non-scoped enumerations because it does not apply an explicit conversion from the enum to its underlying type. Reviewers: chandlerc, mclow.lists Reviewed By: mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D7449 llvm-svn: 228704 | ||||
* | Test commit: remove whitespace at EOL. | Dimitry Andric | 2015-02-05 | 1 | -1/+1 |
| | | | | llvm-svn: 228280 | ||||
* | Fix PR#22433. The algorithm is_partitioned was testing an item in the middle ↵ | Marshall Clow | 2015-02-02 | 1 | -5/+24 |
| | | | | | | of the sequence twice. llvm-svn: 227824 | ||||
* | Removed some tabs that snuck into the test suite. No functionality change | Marshall Clow | 2015-01-28 | 1 | -1/+1 |
| | | | | llvm-svn: 227363 | ||||
* | Fix PR 22106; make std::swap work for multi-dimensional arrays. Thanks to ↵ | Marshall Clow | 2015-01-06 | 1 | -0/+49 |
| | | | | | | Peter Griess for the report and suggested fix llvm-svn: 225285 | ||||
* | Move test into test/std subdirectory. | Eric Fiselier | 2014-12-20 | 39 | -0/+3918 |
llvm-svn: 224658 |