- 8e03071 [libcxx] Fix PR23589: std::function doesn't recognize null pointer to varargs function. by Eric Fiselier · 10 years ago
- af961ed implement more of N4258 - Cleaning up noexcept in the standard library. Specifically add new noexcept stuff to vector and string's move-assignment operations by Marshall Clow · 10 years ago
- fe5102c Fix failing unique_ptr tests. by Eric Fiselier · 10 years ago
- 76581dc Start cleanup of unique_ptr tests. by Eric Fiselier · 10 years ago
- 7175a07 [libcxx] Add <experimental/any> v2. by Eric Fiselier · 10 years ago
- eb6e2ea Reapply working parts of CMake cleanup. by Eric Fiselier · 10 years ago
- 36dc080 Change some #ifdefs to #if - thanks to Dexon for thge catch. by Marshall Clow · 10 years ago
- 5514d36 Revert recent CMake changes again due to failing compiler-rt builds by Eric Fiselier · 10 years ago
- d74dee9 Recommit r243503 "[libcxx] Cleanup CMake configuration and integrate with LLVM" by Eric Fiselier · 10 years ago
- aa9b5e3 Revert r243503 "[libcxx] Cleanup CMake configuration and integrate with LLVM" by Hans Wennborg · 10 years ago
- a379576 Fix a self-move bug in inplace_merge. Thanks to Ted and Dexon for the report and the suggested fix. by Marshall Clow · 10 years ago
- 91eeba8 [libcxx] Cleanup CMake configuration and integrate with LLVM by Eric Fiselier · 10 years ago
- 3baabab Remove sanitizer XFAILs on a test. by Eric Fiselier · 10 years ago
- dd29a02 Mark async tests as UNSUPPORTED in C++03 because it requires variadics by Eric Fiselier · 10 years ago
- b47a434 Fix a handful of tests that fail in C++03 by Eric Fiselier · 10 years ago
- 48aa2cf Checking more __invoke tests. by Eric Fiselier · 10 years ago
- 568bd02 Detect and throw on a class of bad regexes that we mistakenly accepted before. Thanks to Trevor Smigiel for the report by Marshall Clow · 10 years ago
- 3a59ae6 Mark this test as XFAIL with older compilers, since they hit PR18097 by Justin Bogner · 10 years ago
- 45f63bc Cleanup <__functional_03> by Eric Fiselier · 10 years ago
- 938c96e [libcxx] Add support for sanitizers on OS X. by Eric Fiselier · 10 years ago
- f544330 Mark new tests as unsupported before C++11 by Marshall Clow · 10 years ago
- bbe4245 Implement the default searcher for std::experimental::search. by Marshall Clow · 10 years ago
- 166dadb Implement the plugin-based version of std::search. There are no searchers yet; those are coming soon. by Marshall Clow · 10 years ago
- fd9bbf5 Fix warnings in unordered_map by Eric Fiselier · 10 years ago
- 6af41ab Fix warnings in forwardlist by Eric Fiselier · 10 years ago
- 18dbed9 Fix warnings in deque tests by Eric Fiselier · 10 years ago
- b0be44f Commit file missing from r242629 by Eric Fiselier · 10 years ago
- 02bb4bd Fix warnings in array and assoc containers by Eric Fiselier · 10 years ago
- 212714f Cleanup warnings in test/std/depr by Eric Fiselier · 10 years ago
- 3a07a2f Fix warnings in test/std/algorithms by Eric Fiselier · 10 years ago
- 4624107 Fix unused variable warnings in atomic tests by Eric Fiselier · 10 years ago
- 7b86ce5 Fix warnings in test/std/language.support by Eric Fiselier · 10 years ago
- 0f7221c Fix up typos in a couple of tests; due to agressive short-circuiting, they never failed on clang or gcc, but MSVC whined. Patch by Andrew Parker. by Marshall Clow · 10 years ago
- 7d439a4 Add missing instrumentation in vector::insert - Patch from Anna Zaks by Eric Fiselier · 10 years ago
- 12c6d9c [libcxx] Get is_*_destructible tests passing in C++03. by Eric Fiselier · 10 years ago
- 3f339e6 Cleanup tests that fail in C++1z and with Clang 3.8 by Eric Fiselier · 10 years ago
- 2af7d42 Include what we use, instead of letting them get pulled in implictly. This makes the tests work on VS. Thanks to STL for the report by Marshall Clow · 10 years ago
- cd6ed54 Make sure that __libcpp_compressed_pair_imp default-constructs its' members, rather than value-initializing them. Fixes PR#24137 by Marshall Clow · 10 years ago
- 73f131f Mark two tests as failing on clang 3.8 (they failed on 3.7, too) by Marshall Clow · 10 years ago
- 83de101 Remove non-ascii characters by Eric Fiselier · 10 years ago
- 22dff53 Implement n4169 - Add invoke function template by Eric Fiselier · 10 years ago
- 26edd80 Fix PR24114 - std::atomic for non-Clang is not a literal type by Eric Fiselier · 10 years ago
- 119ed47 Move bits from N4258. Mark vector's move-constructor unconditionally noexcept in C++1z by Marshall Clow · 10 years ago
- 7d914d1 Implement the first part of N4258: 'Cleaning up noexcept in the Library'. This patch deals with swapping containers, and implements a more strict noexcept specification (a conforming extension) than the standard mandates. by Marshall Clow · 10 years ago
- f301a11 [libcxx] LWG2420 bits for bind<void> - Patch from K-Ballo by Eric Fiselier · 10 years ago
- 4f55ef7 Fix error string in test suite by Eric Fiselier · 10 years ago
- 0ce05a9 The rest of N4279 and LWG#2464 - for unordered_map by Marshall Clow · 10 years ago
- f3a1a18 Implement N4279 and LWG#2664 for <map>. Reviewed as http://reviews.llvm.org/D10669 by Marshall Clow · 10 years ago
- c6e4669 [libcxx] Add atomic_support.h header to src that handles needed atomic operations. by Eric Fiselier · 10 years ago
- faaf5ee Automatically detect and use clang verify in failure tests. by Eric Fiselier · 10 years ago
- b81d6f5 Noticed that std::allocator<const T> was missing the definition for is_always_equal. Fixed this, and added a test for it. by Marshall Clow · 10 years ago
- 933bf68 Forgot the support include file in r241091 by Marshall Clow · 10 years ago
- 58113db Add tests for LWG#2299. While doing so, I noticed that the tests we have for the transparent comparators don't actually call them. Fix those tests, too. Now one of them is failing, due to a missing const in <map>. Add that (twice). Next step is to do the same for <unordered_map> by Marshall Clow · 10 years ago
- 07546f3 Implement LWG#2407: 'packaged_task(allocator_arg_t, const Allocator&, F&&) should neither be constrained nor explicit' by Marshall Clow · 10 years ago
- abadb45 Implement N4508: shared_mutex. Reviewed as http://reviews.llvm.org/D10480 by Marshall Clow · 10 years ago
- 323ade3 Make support for thread-unsafe C functions optional. by Ed Schouten · 10 years ago
- 1224e89 Make seeking on an ostream that has eofbit set work correctly. Fixes PR#21361 by Marshall Clow · 10 years ago
- c411337 Fix PR#18843. Thanks to Howard for the fix by Marshall Clow · 10 years ago
- b05f059 Fix std::function allocator constructors in C++03. by Eric Fiselier · 10 years ago
- 4983580 Cleanup result_of tests and fix issues with the C++03 result_of. by Eric Fiselier · 10 years ago
- fdae69a Fix PR12999 - unordered_set::insert calls operator new when no insert occurs by Eric Fiselier · 10 years ago
- bc1e44d LWG2442: call_once() shouldn't DECAY_COPY(). Patch from K-Ballo. by Eric Fiselier · 10 years ago
- 724b5ab Refactor is_member_function_pointer to use is_function and not __member_function_traits. by Eric Fiselier · 10 years ago
- 56a599b Fix PR23293 - Do not unlock shared state before notifying consumers. by Eric Fiselier · 10 years ago
- f54ca46 Change #ifdefs in test to UNSUPPORTED. No functionality change in the tests by Marshall Clow · 10 years ago
- 4356f63 Fix PR#23767. Add tests for iterator invalidation for deque::erase/pop_front/pop_back by Marshall Clow · 10 years ago
- c912c0c While applying N4258, I forgot about LWG#2455, which modified the modifications. Correct those - h/t: Howard by Marshall Clow · 10 years ago
- 127db91 More N4258 changes. This time vector's constructors by Marshall Clow · 10 years ago
- 7b193f7 More of N4258 implementation. Mark all of our test_allocators as noexcept constructible. Make the constructors for basic_string noexcept all the time (under C++14). Update tests to reflect the new world order. More to come. by Marshall Clow · 10 years ago
- bbf87b1 Add 'is_always_equal' tests for scoped_allocator. Found that I had typed '||' where I meant '&&' in the code; fixed that, too by Marshall Clow · 10 years ago
- f0324bc Implement the first part of N4258 - allocator_traits<X>::is_always_equal. Also fixes PR#23723 by Marshall Clow · 10 years ago
- 8731c5d Implement uncaught_exceptions() using the newly added hooks in libc++abi, when available by Marshall Clow · 10 years ago
- c4324b2 Add TODO items and remove use of 'noexcept' in C++03 test. by Eric Fiselier · 10 years ago
- 60784f6 Fix PR#23647 - make_shared<volatile bool> - second try by Marshall Clow · 10 years ago
- fc3a3ff Revert 238354 while I figure out what broke in weak_ptr by Marshall Clow · 10 years ago
- 83f8153 Fix PR#23647 - make_shared<volatile bool> by Marshall Clow · 10 years ago
- 970d9f7 Get thread sleep_for test passing in C++03 by Eric Fiselier · 10 years ago
- 2cd0a2e Mark __convert_to_integral test as XFAIL in c++03 by Eric Fiselier · 10 years ago
- ee6bfb2 Cleanup move/forward tests and remove references to __rv. by Eric Fiselier · 10 years ago
- 8f1d85f Add test macros header to remove dependance on __config macros. by Eric Fiselier · 10 years ago
- 7242d18 Fix broken test I just added by Marshall Clow · 10 years ago
- b5b6692 Add tests to ensure that string/vector/array have contiguous iterators - which they did. Mark N4284 as complete by Marshall Clow · 10 years ago
- 1a7ccb1 Fix race condition in thread test. by Eric Fiselier · 10 years ago
- 5d66344 Address @danalberts comments on r237700 by Eric Fiselier · 10 years ago
- d539803 Fix uninitialized values and bad enum conversions found by UBSAN. by Eric Fiselier · 10 years ago
- a985b8c Add compiler flag test support to LIT. Fix new/delete tests on apple-clang. by Eric Fiselier · 10 years ago
- 5dce73d Implement LWG2433: uninitialized_copy()/etc. should tolerate overloaded operator& by Marshall Clow · 10 years ago
- 02be745 mark new/delete tests as XFAIL more carefully by Eric Fiselier · 10 years ago
- f4c9729 [libcxx] Rework sized delete. by Eric Fiselier · 10 years ago
- e62560a Add support for N4389 - std::bool_constant by Marshall Clow · 10 years ago
- c426682 Fix for LWG Issue 2458: N3778 and new library deallocation signatures. by Marshall Clow · 10 years ago
- 21f5b24 libcxx: Enhance lit test command in verbose mode. by Logan Chien · 10 years ago
- b6d12a2 Fix test that was failing on C++03 b/c it was using initializer lists by Marshall Clow · 10 years ago
- 4f8edc4 Fix build when libunwind is disabled. by Logan Chien · 10 years ago
- 5e5e11d libcxx: Fix ARM libc++/abi and libunwind buildbot. by Logan Chien · 10 years ago
- 56a8c64 Implement std::experimental::sample. by Evgeniy Stepanov · 10 years ago
- 0ad232a Fix for LWG Issue 2415: Inconsistency between unique_ptr and shared_ptr by Marshall Clow · 10 years ago
- 928735a Fix for LWG Issue 2369: constexpr max(initializer_list) vs max_element by Marshall Clow · 10 years ago
- 488025c Fix for LWG Issue 2059: C++0x ambiguity problem with map::erase by Marshall Clow · 10 years ago
- 3607f86 Remove some debugging printout lines. No functionality change. by Marshall Clow · 10 years ago