summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/containers/sequences/vector.bool
Commit message (Expand)AuthorAgeFilesLines
* libcxx: Rename .hpp files in libcxx/test/support to .hNico Weber2019-08-211-1/+1
* Add include for 'test_macros.h' to all the tests that were missing them. Than...Marshall Clow2019-05-3124-0/+25
* Support tests in freestandingJF Bastien2019-02-0445-45/+135
* Update more file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-1945-180/+135
* Update a couple of vector<bool> tests that were testing libc++-specific bahav...Marshall Clow2018-12-072-8/+15
* [libcxx] [test] Fix MSVC warning C4800.Stephan T. Lavavej2018-11-141-6/+6
* Fix PR37694 - std::vector doesn't correctly move construct allocators.Eric Fiselier2018-06-051-0/+31
* Fix copy/paste bug in test where we were putting a '3' into a vector<bool>. NFC.Marshall Clow2017-11-261-2/+2
* Replace assert(true) in tests with actual asserts. Reviewed as https://review...Billy Robert O'Neal III2017-11-211-2/+2
* First part of P0600 - '[[nodiscard] in the standard library'. Mark the 'empty...Marshall Clow2017-11-151-0/+28
* Added tests for xxx.size() and xxx.empty() for all the sequence containersMarshall Clow2017-11-152-0/+108
* [libcxx] [test] Change comments to say C++ instead of c++. NFC.Stephan T. Lavavej2017-07-291-1/+1
* [libcxx] [test] Untabify, NFC.Stephan T. Lavavej2017-07-292-12/+12
* [libcxx] [test] Fix MSVC "warning C6326: Potential comparison of a constant w...Stephan T. Lavavej2017-05-051-2/+2
* [libcxx] [test] Strip trailing whitespace. NFC.Stephan T. Lavavej2017-05-041-1/+1
* Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in vector.Eric Fiselier2017-04-168-32/+16
* Implement P0599: 'noexcept for hash functions'. Fix a couple of hash function...Marshall Clow2017-03-231-1/+3
* Update all bug URL's to point to https://bugs.llvm.org/...Eric Fiselier2017-02-171-1/+1
* [libcxx] [test] Fix Clang -Wunused-local-typedef, part 1/3.Stephan T. Lavavej2017-02-055-19/+44
* Change the return type of emplace_[front|back] back to void when building wit...Marshall Clow2017-01-241-5/+25
* Implement P0513R0 - "Poisoning the Hash"Eric Fiselier2017-01-211-0/+28
* [libcxx] [test] Fix MSVC warnings C4127 and C6326 about constants.Stephan T. Lavavej2017-01-181-2/+2
* fix warnings only produced by apple-clangEric Fiselier2016-12-241-0/+3
* Enable the -Wsign-compare warning to better support MSVCEric Fiselier2016-12-111-6/+8
* Fix undefined behavior in container swap tests.Eric Fiselier2016-12-111-4/+4
* [libcxx] [test] D27269: Fix MSVC x64 warning C4267 "conversion from 'size_t' ...Stephan T. Lavavej2016-12-062-2/+2
* [libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-061-2/+3
* [libcxx] [test] D27021: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-062-2/+4
* [libcxx] [test] D27016: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-11-233-13/+16
* [libcxx] [test] D27013: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-11-231-2/+3
* [libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER.Stephan T. Lavavej2016-11-041-1/+2
* Support allocators with explicit conversion constructors. Fixes bug #29000Marshall Clow2016-08-171-0/+4
* Make dtor_noexcept.pass.cpp tests more portable. Patch from STL@microsoft.comEric Fiselier2016-07-251-1/+2
* Make move_assign_noexcept.pass.cpp tests more portable. Patch from STL@micros...Eric Fiselier2016-07-251-4/+5
* Make swap_noexcept.pass.cpp tests more portable. Patch from STL@microsoft.com.Eric Fiselier2016-07-251-11/+7
* Make move_noexcept.pass.cpp tests more portable. Patch from STL@microsoft.comEric Fiselier2016-07-241-4/+5
* Implement P0084r2. Changing emplace return types.Eric Fiselier2016-07-211-7/+22
* Fix unary_function inheritance assumption. Patch from STL@microsoft.comEric Fiselier2016-06-301-2/+2
* Make default_noexcept.pass.cpp container tests more portable. Patch from STL@...Eric Fiselier2016-06-261-2/+3
* Replace __cplusplus comparisons and dialect __has_feature checks with TEST_ST...Eric Fiselier2016-06-1429-39/+36
* Fix vector<bool> tests that were using ints. Patch from STL@microsoft.comEric Fiselier2016-06-145-17/+17
* Remove trailing whitespace in test suite. Approved by Marshall Clow.Eric Fiselier2016-06-016-10/+10
* [libcxx] Improve tests to use the UNSUPPORTED lit directiveAsiri Rathnayake2016-05-282-4/+2
* Guard libc++ specific c.__invariants() tests in LIBCPP_ASSERT macrosEric Fiselier2016-04-288-24/+30
* Complete LWG issue #2016. Allocators must be nothrow swappableEric Fiselier2016-04-221-3/+3
* Added a noexcept testMarshall Clow2016-04-071-0/+6
* Fix bug #27260 - add missing swap(reference, reference) to vector<bool>.Marshall Clow2016-04-071-0/+31
* Add some more tests for the containers type requirementsMarshall Clow2016-03-091-1/+9
* Add a bunch of missing includes in the test suite to make it more portable. F...Marshall Clow2016-01-121-0/+1
* implement more of N4258 - Cleaning up noexcept in the standard library. Speci...Marshall Clow2015-08-181-0/+41
OpenPOWER on IntegriCloud