- a0866c5 Implement <filesystem> by Eric Fiselier · 6 years ago
- cff3d7b Correct comment about stat truncating st_mtimespec to seconds by Eric Fiselier · 6 years ago
- 6655abb Workaround OS X 10.11 behavior where stat truncates st_mtimespec to seconds. by Eric Fiselier · 6 years ago
- 8940394 Add print statements to help debugging by Eric Fiselier · 6 years ago
- 98e5322 Work around GCC bug in constexpr function by Eric Fiselier · 6 years ago
- 0c29afa Remove test which shouldn't have been committed by Eric Fiselier · 6 years ago
- 81872e9 [libc++] Use __int128_t to represent file_time_type. by Eric Fiselier · 6 years ago
- e428b57 Fix diagnostic test to tolerate Clang diagnosing it as well. by Eric Fiselier · 6 years ago
- 8410c81 Fix bugs in create_directory implementation. by Eric Fiselier · 6 years ago
- bb00305 Fix missing includes in format_string.hpp helper by Eric Fiselier · 6 years ago
- d3e32d2 New test support for comparisons. Reviewed as https://reviews.llvm.org/D49773 by Marshall Clow · 6 years ago
- 2493db4 Make <experimental/filesystem> explicitly require C++11. by Eric Fiselier · 6 years ago
- 2be41bb Stop wrapping __has_include in another macro by Alexander Richardson · 6 years ago
- dfd0874 Disable 'suggest braces' warnings for std::array in tests by Marshall Clow · 6 years ago
- fbd3e84 Implement <span>. Reviewed as https://reviews.llvm.org/D49338 by Marshall Clow · 6 years ago
- f581ed2 Fix accidentally removed test. by Eric Fiselier · 6 years ago
- ba01d96 Fix use of C++14 syntax in C++11 filesystem tests. by Eric Fiselier · 6 years ago
- 0ddb77a Implement filesystem_error::what() and improve reporting. by Eric Fiselier · 6 years ago
- 1061b65 fix test failures with older clang versions by Eric Fiselier · 6 years ago
- 70c866b Implement a better copy_file. by Eric Fiselier · 6 years ago
- 77c9cf4 Fix two test failures in <experimental/filesystem> by Eric Fiselier · 6 years ago
- e274f43 [libc++] Implement Directory Entry Caching -- Sort of. by Eric Fiselier · 6 years ago
- 9765ed0 Fix a couple of 'unused variable' warnings in a vector test. NFC. by Marshall Clow · 6 years ago
- fbb1e61 Turns out that wide literals U"xxx" and u"xxx" are c++11 and later. by Marshall Clow · 6 years ago
- 88709a3 Same reversed ifdef happened twice. Test fix only, NFC to the library. by Marshall Clow · 6 years ago
- 839b1a6 Fix a test #ifdef that was reversed. NFC to the library. by Marshall Clow · 6 years ago
- 8df0521 [test] two small cleanups: by Casey Carter · 6 years ago
- 64c10d0 Implement LWG 2946, 3075 and 3076. Reviewed as https://reviews.llvm.org/D48616 by Marshall Clow · 6 years ago
- 9165f9d [libcxx] [test] Strip trailing whitespace. NFC. by Stephan T. Lavavej · 6 years ago
- 9c0cb24 [libcxx] [test] Update msvc_stdlib_force_include.hpp. by Stephan T. Lavavej · 6 years ago
- c19d47a Mark the test using <experimental/memory_resource> to require c++experimental. by Volodymyr Sapsai · 6 years ago
- d54a868 Fix test failures after r334053. by Eric Fiselier · 6 years ago
- 301518c Fix PR37694 - std::vector doesn't correctly move construct allocators. by Eric Fiselier · 6 years ago
- c8846cc Filesystem tests: un-confuse write time by JF Bastien · 6 years ago
- e4063ad Mark deduction guide tests as failing on apple-clang-9 by JF Bastien · 6 years ago
- 1e6ac5e Fix embarrasing typo in uncaught_exceptions. Update tests to really test this. Thanks to Peter Klotz for calling my attention to this. by Marshall Clow · 6 years ago
- 40a29e7 LWG 2969 "polymorphic_allocator::construct() shouldn't pass resource()" by Eric Fiselier · 6 years ago
- d1e11a1 Fix up the final bits of breakage due to clang v5 generating bad implicit template deduction guides - specifically for copy-ctors by Marshall Clow · 6 years ago
- afdadcd Mark the template deduction tests as UNSUPPORTED on clang 5, because it deduces the wrong type. by Marshall Clow · 6 years ago
- 4b72294 Revert "Add nonnull; use it for atomics" by JF Bastien · 6 years ago
- 895c4f3 Fix GCC handling of ATOMIC_VAR_INIT by JF Bastien · 6 years ago
- 8bacb94 Add nonnull; use it for atomics by JF Bastien · 6 years ago
- adf7887 Fix optional<char> test breakage by JF Bastien · 6 years ago
- 3dfc68d Fix array deduction guide test breakage by JF Bastien · 6 years ago
- 599bf43 Fix optional deduction guide test breakage by JF Bastien · 6 years ago
- 756163d Add one more test for optional by Marshall Clow · 6 years ago
- 2fac2d7 Add deduction guides for optional by Marshall Clow · 6 years ago
- 7e4ede4 Do not define template specialization __libcpp_is_floating_point<__fp16> by Akira Hatanaka · 6 years ago
- 440762c Teach __libcpp_is_floating_point that __fp16 and _Float16 are by Akira Hatanaka · 6 years ago
- 7b98dba Implement deduction guides for basic_regex by Marshall Clow · 6 years ago
- 72d5c6f [libcxx] [test] Mark the test as unsupported by apple-clang-8.1. by Volodymyr Sapsai · 6 years ago
- 356a198 Missed the tests for the deduction guides for prority_queue by Marshall Clow · 6 years ago
- 0e5d707 Deduction guides for the container adaptors - queue, stack, and priority_queue by Marshall Clow · 6 years ago
- 32bc2e2 Implement deduction guides for vector by Marshall Clow · 6 years ago
- d4c79d0 Deduction guides for list by Marshall Clow · 6 years ago
- fa3202c Implement deduction guides for forward_list by Marshall Clow · 6 years ago
- 2626328 Remove expression '1L + INT_MAX', because it overflows on machines where int/long are the same size by Marshall Clow · 6 years ago
- 69c2095 Implement deduction guides for <deque> by Marshall Clow · 6 years ago
- f2c627d Disable 'missing-braces' warning by Marshall Clow · 6 years ago
- 8a50bbc Implement deduction guides for <array>; Reviewed as https://reviews.llvm.org/D46964 by Marshall Clow · 6 years ago
- a811ab8 [libcxx] [test] Remove unused local typedef in test/std/numerics/rand/rand.eng/rand.eng.lcong/default.pass.cpp by Billy Robert O'Neal III · 6 years ago
- 18147ec Add void casts to suppress nodiscard on linear_congruential_engine. by Billy Robert O'Neal III · 6 years ago
- 44a1ffc Update XFAIL so apple-clang-9.0 is the last version not implementing Core 2094. by Volodymyr Sapsai · 6 years ago
- 082d5bd [libcxx] [test] Update msvc_stdlib_force_include.hpp. by Stephan T. Lavavej · 6 years ago
- 0f328db Fix failing test due to incorrect use of noexcept by Eric Fiselier · 6 years ago
- f307403 Fix PR37407 - callable traits don't correctly check complete types. by Eric Fiselier · 6 years ago
- a382216 Revert "Emit an error when mixing <stdatomic.h> and <atomic>" by Volodymyr Sapsai · 6 years ago
- 8663c51 [libcxx] [test] Fix whitespace, NFC. by Stephan T. Lavavej · 7 years ago
- fcd4f15 [libcxx] [test] Fix MSVC x64 truncation warning. by Stephan T. Lavavej · 7 years ago
- 8fc472d Emit an error when mixing <stdatomic.h> and <atomic> by Volodymyr Sapsai · 7 years ago
- b110f38 Fix return type of isinf(double) and isnan(double) where possible. by Richard Smith · 7 years ago
- c3ae85d [libcxx] [test] Remove non-portable assertions from filebuf tests by Billy Robert O'Neal III · 7 years ago
- a5996e8 Move old test into test/libcxx, and implement new version of test for ostreambuf_iterator::failed. Fixes PR#37245. Thanks to Billy O'Neill for the bug report. by Marshall Clow · 7 years ago
- db0ba44 [libcxx] func.wrap.func.con: Unset function before destroying anything by Volodymyr Sapsai · 7 years ago
- b911dfd Disable the test I just added when testing C++03. by Marshall Clow · 7 years ago
- 727ed61 Fix static initialization of std::atomic_flag; Fixes PR#37226. Thanks to Ricky Zhou for the report and test case. by Marshall Clow · 7 years ago
- 58bcf28 [libcxx] [test] Remove nonportable that errc::is_a_directory produces "Is a directory" from ios_base::failure tests by Billy Robert O'Neal III · 7 years ago
- 52cd8e4 Re-commit r330627 "[libcxx] implement <experimental/simd> declarations based on P0214R7." by Tim Shen · 7 years ago
- 3d3af7d Revert "[libcxx] implement <experimental/simd> declarations based on P0214R7." by Tim Shen · 7 years ago
- ac2a43d [libcxx] implement <experimental/simd> declarations based on P0214R7. by Tim Shen · 7 years ago
- a9d48f2 [libcxx] [test] Use TEST_IGNORE_NODISCARD. by Stephan T. Lavavej · 7 years ago
- c538ab0 [libcxx] [test] Fix whitespace, NFC. by Stephan T. Lavavej · 7 years ago
- bf3a368 [libcxx] [test] Use TEST_COMPILER_C1XX. by Stephan T. Lavavej · 7 years ago
- 97fc529 [libcxx] [test] Silence MSVC warning C4146. by Stephan T. Lavavej · 7 years ago
- ebb3225 [libcxx] [test] Fix nodiscard warnings. by Stephan T. Lavavej · 7 years ago
- 8a869d0 [libcxx] [test] Avoid unary_function. by Stephan T. Lavavej · 7 years ago
- f18ee8f [libcxx] [test] Avoid MSVC truncation warnings. by Stephan T. Lavavej · 7 years ago
- 2898970 [libcxx] [test] Use the correct type from strlen. Include correct header. by Billy Robert O'Neal III · 7 years ago
- fcb84f3 [test] [NFC] cleanup aligned_storage test by Casey Carter · 7 years ago
- 03856f1 [test] Fix Container::insert(value_type const&) tests by Eric Fiselier · 7 years ago
- 862878b [libcxx][test] Silence -Wself-assign diagnostics by Roman Lebedev · 7 years ago
- 24258c4 Implement P0768r1: Library support for the Spaceship Operator. by Eric Fiselier · 7 years ago
- b431c5a [coroutines] libcxx, noop_coroutine, make bots even more happy by Gor Nishanov · 7 years ago
- ab465be [coroutines] libcxx noop_coroutine. Make bots happier by Gor Nishanov · 7 years ago
- 81e07a9 [coroutines] Add noop_coroutine to <experimental/coroutine> by Gor Nishanov · 7 years ago
- 75b7f52 [libcxx][test] Fix fs::proximate tests on platforms where /net exists. by Jan Korous · 7 years ago
- dd8722c [libcxx][test] Improve assert message by Jan Korous · 7 years ago
- cac4ec3 Fix undefined macro issue in locale tests; Try 2 by Eric Fiselier · 7 years ago
- 70f2b2c Fix undefined macro issue in locale tests by Eric Fiselier · 7 years ago
- 576717d Touch up tests for new <version> header; fix module.modulemap. by Eric Fiselier · 7 years ago