summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/containers/sequences/deque
Commit message (Expand)AuthorAgeFilesLines
* [NFC] Strip trailing whitespace from libc++Louis Dionne2019-10-232-4/+4
* Add include for 'test_macros.h' to all the tests that were missing them. Than...Marshall Clow2019-05-3133-0/+37
* Mark 'front()' and 'back()' as noexcept for array/deque/string/string_view. T...Marshall Clow2019-03-191-8/+24
* Add noexcept to operator[] for array and deque. This is an extension. We alre...Marshall Clow2019-03-141-4/+18
* Support tests in freestandingJF Bastien2019-02-0467-67/+201
* Mark some of the behavior in the move w/allocator constructors of deque/unord...Marshall Clow2019-01-291-12/+13
* Update more file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-1967-268/+201
* Implement P1209 - Adopt Consistent Container Erasure from Library Fundamental...Marshall Clow2018-12-142-0/+156
* [libcxx] [test] Strip trailing whitespace. NFC.Stephan T. Lavavej2018-11-142-2/+2
* Update all the max_size tests to eliminate signed/unsigned comparison warning...Marshall Clow2018-10-121-4/+4
* mark LWG#2953 as complete. No code changes required, but added a couple of ex...Marshall Clow2018-09-122-0/+64
* Fix Bug 38644: multimap::clear() missing exception specifier. Add noexcept te...Marshall Clow2018-08-221-0/+67
* [libcxx] [test] Strip trailing whitespace. NFC.Stephan T. Lavavej2018-06-142-3/+3
* Fix test failures after r334053.Eric Fiselier2018-06-061-1/+3
* Remove expression '1L + INT_MAX', because it overflows on machines where int/...Marshall Clow2018-05-191-2/+2
* Implement deduction guides for <deque>Marshall Clow2018-05-182-0/+140
* 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
* [libc++] Fix PR34898 - vector iterator constructors and assign method perform...Eric Fiselier2017-10-173-3/+154
* [test] Allow other implementations to strengthen noexcept on deque's move con...Casey Carter2017-09-301-1/+1
* [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-10/+10
* Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in dequeEric Fiselier2017-04-1610-42/+20
* [libcxx] [test] Fix Clang -Wunused-local-typedef, part 2/3.Stephan T. Lavavej2017-02-051-1/+0
* [libcxx] [test] Fix Clang -Wunused-local-typedef, part 1/3.Stephan T. Lavavej2017-02-055-10/+20
* Change the return type of emplace_[front|back] back to void when building wit...Marshall Clow2017-01-242-2/+28
* fix warnings only produced by apple-clangEric Fiselier2016-12-241-4/+7
* Enable the -Wsign-compare warning to better support MSVCEric Fiselier2016-12-112-2/+8
* Fix undefined behavior in container swap tests.Eric Fiselier2016-12-111-4/+4
* [libcxx] [test] D27025: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-061-2/+2
* [libcxx] [test] D27023: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-061-8/+8
* [libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-063-3/+3
* [libcxx] [test] D27021: Fix MSVC warning C4389 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-12-0620-31/+39
* [libcxx] [test] D27014: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-11-2312-21/+31
* [libcxx] [test] D27013: Fix MSVC warning C4018 "signed/unsigned mismatch", pa...Stephan T. Lavavej2016-11-232-2/+4
* [libcxx] Fix max_size() across all containersEric Fiselier2016-11-231-0/+47
* [libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER.Stephan T. Lavavej2016-11-042-4/+6
* Change from "XFAIL: libcpp-no-exceptions" to "UNSUPPORTED: libcpp-no-exceptio...Roger Ferrer Ibanez2016-10-312-2/+2
* [PATCH] D25483: [libcxx] [test] Fix non-Standard assumptions about how many e...Stephan T. Lavavej2016-10-272-2/+2
* [libc++] Fix stack_allocatorEric Fiselier2016-10-085-10/+10
* [libc++] Remove various C++03 feature test macrosEric Fiselier2016-09-251-3/+3
* Support allocators with explicit conversion constructors. Fixes bug #29000Marshall Clow2016-08-171-0/+2
* 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-2/+3
* 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-3/+4
* Implement P0084r2. Changing emplace return types.Eric Fiselier2016-07-212-19/+12
* Always use the allocator to construct/destruct elements of a deque/vector. Fi...Marshall Clow2016-07-111-0/+12
* Make default_noexcept.pass.cpp container tests more portable. Patch from STL@...Eric Fiselier2016-06-261-2/+3
* Move remaining _LIBCPP_VERSION tests into test/libcxxEric Fiselier2016-06-221-20/+0
OpenPOWER on IntegriCloud