Commit Graph

  • c9f5f10562 Add 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
  • e208d0895a Rename identifiers named `__output` Alexander Richardson 2017-11-14 11:14:25 +0000
  • 8437dbd021 Another test for LWG2952 Marshall Clow 2017-11-14 01:18:36 +0000
  • 52728778fa Implement LWG2950: std::byte operations are misspecified Marshall Clow 2017-11-14 01:14:53 +0000
  • e1cfe7a7f6 Implement LWG2952: iterator_traits should work for pointers to cv T Marshall Clow 2017-11-14 00:03:10 +0000
  • 396abfea0e Merging r312693: Tom Stellard 2017-11-13 21:27:53 +0000
  • 928f2866ec Put the status in the wrong column Marshall Clow 2017-11-13 04:15:39 +0000
  • edd7e051d4 Implement P0550R2: Transformation Trait remove_cvref Marshall Clow 2017-11-13 03:59:22 +0000
  • 7513814cb6 Two more papers from Albuquerque Marshall Clow 2017-11-12 18:52:16 +0000
  • 55eda5dfcc Updated C++2a status page with new features/defects approved in Albuquerque. Marshall Clow 2017-11-12 18:48:42 +0000
  • b4a34c08ac Add _LIBCPP_INLINE_VISIBILITY to __compressed_pair_elem members Alex Lorenz 2017-11-09 17:54:49 +0000
  • eada02443a [libcxx] Mark test cxa_deleted_virtual.pass.cpp as failing for previous libcxx versions. Volodymyr Sapsai 2017-11-08 22:30:29 +0000
  • 56a3f4a9d1 Added include for <cassert> Marshall Clow 2017-11-08 20:25:47 +0000
  • 7e73ea873f Teach test suite about C++2a dialect flag. Eric Fiselier 2017-11-07 20:26:23 +0000
  • 6efb1c19a7 Change test suite to support c++17 dialect flag instead of c++1z. Eric Fiselier 2017-11-07 20:20:58 +0000
  • 2e390822e5 Change a bunch of comments from C++1z to C++17. NFC Marshall Clow 2017-11-02 15:03:25 +0000
  • 79078a328e Mark tests as unsupported in C++98 as well Roger Ferrer Ibanez 2017-11-02 15:01:43 +0000
  • e3853bfecd Mark Endian as 'in progress' Marshall Clow 2017-11-02 14:53:08 +0000
  • c3f25abd63 Revert "[libc++] Don't alias quick_exit if __ANDROID_API__ < 21" Dan Albert 2017-11-01 23:43:07 +0000
  • f56f1bba1a [libc++] Don't alias quick_exit if __ANDROID_API__ < 21 Dan Albert 2017-11-01 21:17:56 +0000
  • d422c95317 More statuses, a new patch, too Marshall Clow 2017-11-01 04:03:35 +0000
  • 9a675c6dae Update the synopsis to match the P/R of 2945. No code changes. Marshall Clow 2017-11-01 01:27:25 +0000
  • 67371161a0 Fix broken links; update more issues. Marshall Clow 2017-10-31 00:19:47 +0000
  • c6934a38d5 Add a fail test for aligned_union of an incomplete type. See LWG#2979. NFC Marshall Clow 2017-10-31 00:05:17 +0000
  • 772a6d4185 Add 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
  • a4c272d82f Implement LWG 3013 - some filesystem members should not be noexcept. Eric Fiselier 2017-10-30 18:59:59 +0000
  • fba9cd8c9e Fix PR35078 - recursive directory iterator's increment method throws incorrectly. Eric Fiselier 2017-10-30 18:43:21 +0000
  • 3b8f03d964 Mark test as unsupported on C++98/03, since it uses move_iterator Marshall Clow 2017-10-30 16:07:59 +0000
  • c3fa9655a4 Fix 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
  • 9bc42cf1d7 Initial triage Marshall Clow 2017-10-29 21:57:58 +0000
  • a12eafc284 Update status of 2950 Marshall Clow 2017-10-29 21:43:30 +0000
  • 23d0bd265d Issues to be voted on in ABQ Marshall Clow 2017-10-29 19:02:00 +0000
  • 76929f6825 Mark 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
  • 66db4e4fdd Mark 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
  • f45f32b025 More fuzzing interfaces Marshall Clow 2017-10-23 23:19:30 +0000
  • b91e69c546 Fix misguided error message in debug mode. No functional change. Fixes PR#34966 Marshall Clow 2017-10-23 16:46:44 +0000
  • 24c7353aa9 Fix 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
  • 278c0ba4a6 Fix 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
  • 2ac694b611 Fix 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
  • 69447430a3 Fix regex bug with ^\W. Thanks to Tim Shen for the patch. Reviewed as https://reviews.llvm.org/D37955 Marshall Clow 2017-10-18 16:49:22 +0000
  • 1aeb40080d Refactor std::list node allocation logic. Eric Fiselier 2017-10-17 19:12:23 +0000
  • 9fdd86763e fix shadowing warnings in new tests, try 2 Eric Fiselier 2017-10-17 16:06:42 +0000
  • d93991fedd fix shadowing warnings in new tests Eric Fiselier 2017-10-17 13:45:20 +0000
  • 5ccf043379 Refactor _LIBCPP_<LITTLE|BIG>_ENDIAN Eric Fiselier 2017-10-17 13:16:01 +0000
  • 94c3917960 [libc++] Fix PR34898 - vector iterator constructors and assign method perform push_back instead of emplace_back. Eric Fiselier 2017-10-17 13:03:17 +0000
  • 5cf53b55e6 Fix last_write_time.pass.cpp to work with clang-3.9 and earlier Roman Lebedev 2017-10-15 21:52:53 +0000
  • 4b05db4286 Really do make sure that last_write_time.pass.cpp still works with old clang Roman Lebedev 2017-10-15 20:46:12 +0000
  • 0fdc4c9c6b Silence clang's -Wtautological-constant-compare in last_write_time.pass.cpp Roman Lebedev 2017-10-15 20:12:42 +0000
  • 5384fd8538 Placate unused variable warnings uncovered by improvements to clang's -Wunused-variable Benjamin Kramer 2017-10-14 15:52:38 +0000
  • c85f85a56b More fuzzing infastructre - regex Marshall Clow 2017-10-12 14:48:09 +0000
  • 7c31c8407b Mark test as a long-test Roger Ferrer Ibanez 2017-10-12 08:46:05 +0000
  • 2f494f7331 Remove unneeded typename from test Roger Ferrer Ibanez 2017-10-10 07:42:19 +0000
  • 18dba06924 [libc++] Support Microsoft ABI without vcruntime headers Shoaib Meenai 2017-10-09 19:25:17 +0000
  • 7762784b98 [libc++] Clarify names of ABI forcing macros Shoaib Meenai 2017-10-05 02:18:08 +0000
  • f7e9063861 [libc++] Move cache variable definition. NFC Shoaib Meenai 2017-10-04 23:51:57 +0000
  • 36d0ee6c87 [libc++] Allow users to explicitly specify ABI Shoaib Meenai 2017-10-04 23:44:38 +0000
  • 2b7279cb08 Fix 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
  • 29ae2ba656 Initial cut at infastructure for fuzzing support for OSS-fuzz Marshall Clow 2017-10-04 22:23:03 +0000
  • 8a29c9d39b Add C++17 explicit deduction guides to std::pair. Eric Fiselier 2017-10-04 00:04:26 +0000
  • 28dd96b8a9 Fix test suite misconfiguration on OS X Eric Fiselier 2017-10-03 02:25:05 +0000
  • 5fe8797d57 Improve 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
  • 1e32db7b33 Revert 313789 because gcc doesn't like it Marshall Clow 2017-09-20 19:38:43 +0000
  • 9641305bba Mark 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
  • e2b6832fcd Fix a bit of UB in __independent_bits_engine. Fixes PR#34663 Marshall Clow 2017-09-20 17:34:11 +0000
  • 3a84027eb1 Make libcxx tests work when llvm sources are not present. Zachary Turner 2017-09-20 16:01:50 +0000
  • bc4474e3ba [libc++] Replace __sync_* functions with __libcpp_atomic_* functions Weiming Zhao 2017-09-19 23:18:03 +0000
  • 7a87049e47 Resubmit "Fix llvm-lit script generation in libcxx." Zachary Turner 2017-09-19 17:19:10 +0000
  • 81306615ac Revert "Fix llvm-lit script generation in libcxx." Zachary Turner 2017-09-19 03:11:35 +0000
  • 2205438c1f Fix llvm-lit script generation in libcxx. Zachary Turner 2017-09-19 02:46:28 +0000
  • 805e11b38c Fix failing ASAN test Eric Fiselier 2017-09-18 22:01:18 +0000
  • f7aaaaaa65 Fix two failing -verify tests to tolerate old and new clang versions Eric Fiselier 2017-09-17 21:50:59 +0000
  • edf6f11feb Update changelog revision Eric Fiselier 2017-09-17 21:00:27 +0000
  • 0732dcfd0d ABI: Fix for undefined "___cxa_deleted_virtual" symbol in MacOSX Eric Fiselier 2017-09-17 20:59:43 +0000
  • dfcb00a2c5 Fix failing -verify tests due to change in Clangs static_assert message. Eric Fiselier 2017-09-17 20:57:05 +0000
  • ffe3715924 [libc++] Account for Microsoft CRT const overloads Shoaib Meenai 2017-09-15 18:49:34 +0000
  • ca79c159d8 [libc++] Remove unnecessary struct tag Shoaib Meenai 2017-09-15 06:19:31 +0000
  • 2656897657 typeinfo: provide a partial implementation for Win32 Saleem Abdulrasool 2017-09-15 05:42:39 +0000
  • 63d88110cc Fix accidental ADL in std::allocator_traits meta-programming. Eric Fiselier 2017-09-15 00:31:38 +0000
  • 0a2af12aff [libc++] Prevent stale site configuration headers Shoaib Meenai 2017-09-14 18:23:43 +0000
  • 5f919fe349 Use CMAKE_AR instead of the system default 'ar' for merging static libraries Martin Storsjo 2017-09-13 06:55:44 +0000
  • 327f3b7eff Mark the new tests as unsupported when there are no exceptions Marshall Clow 2017-09-12 23:33:34 +0000
  • 8122e2490e libcxx: fix merge_archives error variable name Martell Malone 2017-09-12 22:32:02 +0000
  • 2c607f47f9 Handle object files named *.obj in merge_archives.py Martin Storsjo 2017-09-12 20:54:15 +0000
  • 59b296ea5c XFAIL a couple of new <regex> tests for C++03 Marshall Clow 2017-09-12 19:01:32 +0000
  • ee596eb469 Apply 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
  • 29149d3e35 Make 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
  • 60f8ad1b1d mark 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
  • ff400da261 Add include of <string> to <system_error>, since things in there return strings. Fixes PR#34529. Marshall Clow 2017-09-11 16:05:42 +0000
  • f2c4a96359 Fix PR34298 - Allow std::function with an incomplete return type. Eric Fiselier 2017-09-10 23:41:20 +0000
  • d5a494e058 Revert "Fix PR34298 - Allow std::function with an incomplete return type." Eric Fiselier 2017-09-10 23:37:47 +0000
  • f83132a4d1 Fix PR34298 - Allow std::function with an incomplete return type. Eric Fiselier 2017-09-10 23:12:33 +0000
  • dd79330af9 Merge 637aa06ea4 into 11762b4acd Reimar Döffinger 2017-09-08 04:07:47 +0000
  • 11762b4acd XFAIL tests on SLES11 Brian Cain 2017-09-08 03:57:02 +0000
  • 637aa06ea4 Ensure std::getline always 0-terminates string. Reimar Döffinger 2017-09-07 08:42:10 +0200