c9f5f10562Add two new macros: _LIBCPP_NODISCARD_AFTER_CXX17 and _LIBCPP_CONSTEXPR_AFTER_CXX17, along with a way to turn off the NODISCARD one: _LIBCPP_DISABLE_NODISCARD_AFTER_CXX17. No one is using these yet, but we will be ... soon
Marshall Clow
2017-11-14 22:26:50 +0000
e208d0895aRename identifiers named `__output`
Alexander Richardson
2017-11-14 11:14:25 +0000
8437dbd021Another test for LWG2952
Marshall Clow
2017-11-14 01:18:36 +0000
c6934a38d5Add a fail test for aligned_union of an incomplete type. See LWG#2979. NFC
Marshall Clow
2017-10-31 00:05:17 +0000
772a6d4185Add more fuzzing bits: partial_sort_copy, partition_copy, unique, unique_copy. No functional change to libc++; this is all test infastructure
Marshall Clow
2017-10-30 19:51:58 +0000
a4c272d82fImplement LWG 3013 - some filesystem members should not be noexcept.
Eric Fiselier
2017-10-30 18:59:59 +0000
3b8f03d964Mark test as unsupported on C++98/03, since it uses move_iterator
Marshall Clow
2017-10-30 16:07:59 +0000
c3fa9655a4Fix PR#35119 : set_union misbehaves with move_iterators. Thanks to Denis Yaroshevskiy for both the bug report and the fix.
Marshall Clow
2017-10-30 15:50:00 +0000
a12eafc284Update status of 2950
Marshall Clow
2017-10-29 21:43:30 +0000
23d0bd265dIssues to be voted on in ABQ
Marshall Clow
2017-10-29 19:02:00 +0000
76929f6825Mark string_view's constructor from (ptr,len) as noexcept (an extension). Update the tests to check this (and other noexcept bits
Marshall Clow
2017-10-24 16:30:06 +0000
66db4e4fddMark string_view literals as 'noexcept'. Fixes PR#25054. Thanks to Pavel K for the bug report.
Marshall Clow
2017-10-24 14:06:00 +0000
b91e69c546Fix misguided error message in debug mode. No functional change. Fixes PR#34966
Marshall Clow
2017-10-23 16:46:44 +0000
24c7353aa9Fix an unsigned integer overflow in regex that lead to a bad memory access. Found by OSS-Fuzz
Marshall Clow
2017-10-19 22:10:41 +0000
278c0ba4a6Fix UB - signed integer overflow in regex. Thanks to Tim Shen for the patch. Reviewed as https://reviews.llvm.org/D39066
Marshall Clow
2017-10-19 17:39:16 +0000
2ac694b611Fix a think-o in the design of the stable_XXX sort tests; only shows up for test cases > 255 elements
Marshall Clow
2017-10-18 20:40:57 +0000
36d0ee6c87[libc++] Allow users to explicitly specify ABI
Shoaib Meenai
2017-10-04 23:44:38 +0000
2b7279cb08Fix accidental assignment inside test asserts
Eric Fiselier
2017-10-04 23:21:18 +0000
2bba98eea0[libc++] Add site config option for ABI macros
Shoaib Meenai
2017-10-04 23:17:12 +0000
29ae2ba656Initial cut at infastructure for fuzzing support for OSS-fuzz
Marshall Clow
2017-10-04 22:23:03 +0000
8a29c9d39bAdd C++17 explicit deduction guides to std::pair.
Eric Fiselier
2017-10-04 00:04:26 +0000
28dd96b8a9Fix test suite misconfiguration on OS X
Eric Fiselier
2017-10-03 02:25:05 +0000
5fe8797d57Improve test runner output for broken configurations.
Eric Fiselier
2017-10-02 22:52:51 +0000
f17205d6a8[test] Allow other implementations to strengthen noexcept on deque's move constructor
Casey Carter
2017-09-30 23:15:22 +0000
006f64c647[test] forwardlist.cons/move_noexcept.pass.cpp
Casey Carter
2017-09-28 20:23:43 +0000
5d5bbc45ab[libcxx] [test] Fix unused local typedef warnings.
Stephan T. Lavavej
2017-09-26 23:08:43 +0000
a2f0b51b9a[libcxx] [test] Strip trailing whitespace.
Stephan T. Lavavej
2017-09-26 23:08:41 +0000
7f0fd06bf7[libcxx] [test] Silence warning C4324 for MSVC.
Stephan T. Lavavej
2017-09-26 23:08:39 +0000
1e32db7b33Revert 313789 because gcc doesn't like it
Marshall Clow
2017-09-20 19:38:43 +0000
9641305bbaMark the __eval methods on independent_bits_engine (and __independent_bits_engine) as const, since they make no changes to the object. NFC.
Marshall Clow
2017-09-20 18:32:08 +0000
e2b6832fcdFix a bit of UB in __independent_bits_engine. Fixes PR#34663
Marshall Clow
2017-09-20 17:34:11 +0000
3a84027eb1Make libcxx tests work when llvm sources are not present.
Zachary Turner
2017-09-20 16:01:50 +0000
2c607f47f9Handle object files named *.obj in merge_archives.py
Martin Storsjo
2017-09-12 20:54:15 +0000
59b296ea5cXFAIL a couple of new <regex> tests for C++03
Marshall Clow
2017-09-12 19:01:32 +0000
ee596eb469Apply D28224: 'Throw exception after too many steps' Fixes PR#20291. Thanks to Tim Shen for the patch
Marshall Clow
2017-09-12 17:56:59 +0000
29149d3e35Make pbump (internally) handle sizes bigger than MAX_INT. Fixes PR#33725 - thanks to Jonathan Wakely for the report
Marshall Clow
2017-09-12 15:00:43 +0000
60f8ad1b1dmark mersenne_twister_engine<>::seed(result_type __sd) with _LIBCPP_DISABLE_UBSAN_UNSIGNED_INTEGER_CHECK to placate UBSAN. Fixes PR#34160
Marshall Clow
2017-09-11 18:10:33 +0000
ff400da261Add include of <string> to <system_error>, since things in there return strings. Fixes PR#34529.
Marshall Clow
2017-09-11 16:05:42 +0000
f2c4a96359Fix PR34298 - Allow std::function with an incomplete return type.
Eric Fiselier
2017-09-10 23:41:20 +0000
d5a494e058Revert "Fix PR34298 - Allow std::function with an incomplete return type."
Eric Fiselier
2017-09-10 23:37:47 +0000
f83132a4d1Fix PR34298 - Allow std::function with an incomplete return type.
Eric Fiselier
2017-09-10 23:12:33 +0000