summaryrefslogtreecommitdiff
path: root/test/std/containers/sequences/vector.bool
AgeCommit message (Expand)Author
2017-11-26Fix copy/paste bug in test where we were putting a '3' into a vector<bool>. NFC.Marshall Clow
2017-11-21Replace assert(true) in tests with actual asserts. Reviewed as https://review...Billy Robert O'Neal III
2017-11-15First part of P0600 - '[[nodiscard] in the standard library'. Mark the 'empty...Marshall Clow
2017-11-15Added tests for xxx.size() and xxx.empty() for all the sequence containersMarshall Clow
2017-07-29[libcxx] [test] Change comments to say C++ instead of c++. NFC.Stephan T. Lavavej
2017-07-29[libcxx] [test] Untabify, NFC.Stephan T. Lavavej
2017-05-05[libcxx] [test] Fix MSVC "warning C6326: Potential comparison of a constant w...Stephan T. Lavavej
2017-05-04[libcxx] [test] Strip trailing whitespace. NFC.Stephan T. Lavavej
2017-04-16Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in vector.Eric Fiselier
2017-03-23Implement P0599: 'noexcept for hash functions'. Fix a couple of hash function...Marshall Clow
2017-02-17Update all bug URL's to point to https://bugs.llvm.org/...Eric Fiselier
2017-02-05[libcxx] [test] Fix Clang -Wunused-local-typedef, part 1/3.Stephan T. Lavavej
2017-01-24Change the return type of emplace_[front|back] back to void when building wit...Marshall Clow
2017-01-21Implement P0513R0 - "Poisoning the Hash"Eric Fiselier
2017-01-18[libcxx] [test] Fix MSVC warnings C4127 and C6326 about constants.Stephan T. Lavavej
2016-12-24fix warnings only produced by apple-clangEric Fiselier
2016-12-11Enable the -Wsign-compare warning to better support MSVCEric Fiselier
2016-12-11Fix undefined behavior in container swap tests.Eric Fiselier
2016-12-06[libcxx] [test] D27269: Fix MSVC x64 warning C4267 "conversion from 'size_t' ...Stephan T. Lavavej
2016-12-06[libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej
2016-12-06[libcxx] [test] D27021: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej
2016-11-23[libcxx] [test] D27016: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej
2016-11-23[libcxx] [test] D27013: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej
2016-11-04[libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER.Stephan T. Lavavej
2016-08-17Support allocators with explicit conversion constructors. Fixes bug #29000Marshall Clow
2016-07-25Make dtor_noexcept.pass.cpp tests more portable. Patch from STL@microsoft.comEric Fiselier
2016-07-25Make move_assign_noexcept.pass.cpp tests more portable. Patch from STL@micros...Eric Fiselier
2016-07-25Make swap_noexcept.pass.cpp tests more portable. Patch from STL@microsoft.com.Eric Fiselier
2016-07-24Make move_noexcept.pass.cpp tests more portable. Patch from STL@microsoft.comEric Fiselier
2016-07-21Implement P0084r2. Changing emplace return types.Eric Fiselier
2016-06-30Fix unary_function inheritance assumption. Patch from STL@microsoft.comEric Fiselier
2016-06-26Make default_noexcept.pass.cpp container tests more portable. Patch from STL@...Eric Fiselier
2016-06-14Replace __cplusplus comparisons and dialect __has_feature checks with TEST_ST...Eric Fiselier
2016-06-14Fix vector<bool> tests that were using ints. Patch from STL@microsoft.comEric Fiselier
2016-06-01Remove trailing whitespace in test suite. Approved by Marshall Clow.Eric Fiselier
2016-05-28[libcxx] Improve tests to use the UNSUPPORTED lit directiveAsiri Rathnayake
2016-04-28Guard libc++ specific c.__invariants() tests in LIBCPP_ASSERT macrosEric Fiselier
2016-04-22Complete LWG issue #2016. Allocators must be nothrow swappableEric Fiselier
2016-04-07Added a noexcept testMarshall Clow
2016-04-07Fix bug #27260 - add missing swap(reference, reference) to vector<bool>.Marshall Clow
2016-03-09Add some more tests for the containers type requirementsMarshall Clow
2016-01-12Add a bunch of missing includes in the test suite to make it more portable. F...Marshall Clow
2015-08-18implement more of N4258 - Cleaning up noexcept in the standard library. Speci...Marshall Clow
2015-07-14Move bits from N4258. Mark vector's move-constructor unconditionally noexcept...Marshall Clow
2015-07-13Implement the first part of N4258: 'Cleaning up noexcept in the Library'. Thi...Marshall Clow
2015-06-04While applying N4258, I forgot about LWG#2455, which modified the modificatio...Marshall Clow
2015-06-04More N4258 changes. This time vector's constructorsMarshall Clow
2015-01-07libc++ implements its' hash objects as deriving from std::unary_function, and...Marshall Clow
2014-12-20Move test into test/std subdirectory.Eric Fiselier