1. aafb315 Add tests to make sure that <string_view> provides std::size/data/empty in C++17 mode. This is LWG#3009, coming up for a vote in JAX - but we already do it, just don't have tests by Marshall Clow · 8 years ago
  2. 6f56d3e [libcxx] Define istream_iterator equality comparison operators out-of-line by Roger Ferrer Ibanez · 8 years ago
  3. ba40b05 Change (void) casts to TEST_IGNORE_NODISCARD, as requested by Eric. Reviewed as https://reviews.llvm.org/D40065 by Billy Robert O'Neal III · 8 years ago
  4. 25a7ba4 More of P0600 - '[[nodiscard]] in the Library' mark empty() as nodiscard in string, string_view, and the free function std::empty(). Removed tabs from <string_view>, which is why the diff is so big. by Marshall Clow · 8 years ago
  5. 5f8d84e Clean up the tests for free data(), size() and empty() by Marshall Clow · 8 years ago
  6. 8325276 Tolerate [[nodiscard]] annotations in the STL. Reviewed as https://reviews.llvm.org/D39033 by Billy Robert O'Neal III · 8 years ago
  7. 0a5ebdb Another test for LWG2952 by Marshall Clow · 8 years ago
  8. ffcfd92 Implement LWG2952: iterator_traits should work for pointers to cv T by Marshall Clow · 8 years ago
  9. 515e9db Change test suite to support c++17 dialect flag instead of c++1z. by Eric Fiselier · 8 years ago
  10. 346bd6a Placate unused variable warnings uncovered by improvements to clang's -Wunused-variable by Benjamin Kramer · 8 years ago
  11. 709be5e [libcxx] [test] Rename _Up to U, etc. NFCI. by Stephan T. Lavavej · 8 years ago
  12. aae6356 [libcxx] [test] Rename _Tp to T. NFCI. by Stephan T. Lavavej · 8 years ago
  13. e71235b [libcxx] [test] Consistently list "c++98, c++03" in chronological order. NFC. by Stephan T. Lavavej · 8 years ago
  14. 9ea675e [libcxx] [test] Change comments to say C++ instead of c++. NFC. by Stephan T. Lavavej · 8 years ago
  15. 4159db7 [libcxx] [test] Untabify, NFC. by Stephan T. Lavavej · 8 years ago
  16. 3e2ef40 Remove addtional parameters in function std::next() and std::prev() by Rachel Craik · 8 years ago
  17. 5984426 [libcxx] [test] Strip trailing whitespace. NFC. by Stephan T. Lavavej · 8 years ago
  18. c44a727 Implement LWG#2790: Remove istreambuf_iterator::operator->. It never did anything useful. by Marshall Clow · 8 years ago
  19. f51ee63 Make next/prev/advance/distance operations on iterators be constexpr. I missed this when I implemented the rest of P0031R0 by Marshall Clow · 8 years ago
  20. 40608ce [libcxx] [test] Be compatible with LWG 2438 "std::iterator inheritance shouldn't be mandated". by Stephan T. Lavavej · 8 years ago
  21. 4f73dbf Clean up more usages of _LIBCPP_HAS_NO_RVALUE_REFERENCES by Eric Fiselier · 9 years ago
  22. 2f75ad4 Recommit r296712: "Fix Apple-specific XFAIL directive in libc++ test" by Mehdi Amini · 9 years ago
  23. cd0b56c Revert "Fix Apple-specific XFAIL directive in libc++ test" by Mehdi Amini · 9 years ago
  24. 48c4a82 Fix Apple-specific XFAIL directive in libc++ test by Mehdi Amini · 9 years ago
  25. 3c35491 Update all bug URL's to point to https://bugs.llvm.org/... by Eric Fiselier · 9 years ago
  26. a730ed3 [libcxx] [test] Fix comment typos, strip trailing whitespace. by Stephan T. Lavavej · 9 years ago
  27. 12195f1 [libcxx] [test] Strip trailing whitespace. NFC, no code review. by Stephan T. Lavavej · 9 years ago
  28. 020b623 Implement the last bit of P0031: 'A Proposal to Add Constexpr Modifiers to reverse_iterator, move_iterator, array and Range Access' for C++17 by Marshall Clow · 9 years ago
  29. a3f1411 Fix unused warning which only triggers in C++11 by Eric Fiselier · 9 years ago
  30. fd83822 Fix unused parameters and variables by Eric Fiselier · 9 years ago
  31. a0620a1 XFAIL test for more apple-clang versions by Eric Fiselier · 9 years ago
  32. a361aa3 XFAIL test on apple-clang-7.0 by Eric Fiselier · 9 years ago
  33. fec6be9 Recommit r286884: P0503R0, adopted in Issaquah, rewords some requirements on nullptr_t and istream_iterator. by Eric Fiselier · 9 years ago
  34. f2e24f5 [libcxx] [test] Fix MSVC warning C4244 "conversion from 'X' to 'Y', possible loss of data", part 7/7. by Stephan T. Lavavej · 9 years ago
  35. 465bd0f Enable warnings by default for C++ >= 11 and fix -Wshadow occurances by Eric Fiselier · 9 years ago
  36. d72ece6 [libcxx] [test] D27027: Strip trailing whitespace. by Stephan T. Lavavej · 9 years ago
  37. 50d161c Revert "P0503R0, adopted in Issaquah, rewords some requirements on nullptr_t and istream_iterator. No code changes were needed, but I updated a few tests. Also resolved P0509 and P0521, which required no changes to the library or tests." by Vedant Kumar · 9 years ago
  38. 48b520a P0503R0, adopted in Issaquah, rewords some requirements on nullptr_t and istream_iterator. No code changes were needed, but I updated a few tests. Also resolved P0509 and P0521, which required no changes to the library or tests. by Marshall Clow · 9 years ago
  39. 0f901c7 [libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER. by Stephan T. Lavavej · 9 years ago
  40. 720ef47 Implement another part of P0031; adding constexpr to move_iterator by Marshall Clow · 9 years ago
  41. c1b73a1 Adding a missing constexpr test for reverse_iterator operator[]. by Marshall Clow · 9 years ago
  42. 1b8f260 Implement constexpr support for reverse_iterator. Reviewed as https://reviews.llvm.org/D25534 by Marshall Clow · 9 years ago
  43. 610ad3a Add tests for LWG2544. We already implement this; just adding tests to make sure that we keep doing it. by Marshall Clow · 9 years ago
  44. a619917 [libcxx] Add missing c++98 xfail. NFC. by Asiri Rathnayake · 9 years ago
  45. 2a837ea Mark test as XFAIL for C++03, rather than providing a dummy pass. by Marshall Clow · 9 years ago
  46. 7725546 std:: quailfy the calls for cend/crend/cbegin/cend. Fixes bug 28927. by Marshall Clow · 9 years ago
  47. 8892b4e Fix ::reference typedef in insert iterators. by Eric Fiselier · 9 years ago
  48. cb1fd66 Make instreambuf.iterator/types.pass.cpp more portable. by Eric Fiselier · 9 years ago
  49. 56f23a3 Move remaining _LIBCPP_VERSION tests into test/libcxx by Eric Fiselier · 9 years ago
  50. f2f2a63 Replace __cplusplus comparisons and dialect __has_feature checks with TEST_STD_VER. by Eric Fiselier · 9 years ago
  51. d04c685 Remove trailing whitespace in test suite. Approved by Marshall Clow. by Eric Fiselier · 9 years ago
  52. 6edc12c [libcxx] Improve tests to use the UNSUPPORTED lit directive by Asiri Rathnayake · 9 years ago
  53. 6a05b00 Test hijacking ADL for operator& in the stream iterator constructors. by Eric Fiselier · 9 years ago
  54. 7b65137 Add test for r269789 by Eric Fiselier · 9 years ago
  55. fb42f4c Void cast runtime-unused variables. Patch from STL@microsoft.com by Eric Fiselier · 10 years ago
  56. a64a8fc Rename a few tests that had typos in their names. No functional change. Thanks to STL for the catch by Marshall Clow · 10 years ago
  57. 906c508 Fix LWG issue #2106: move_iterators returning prvalues by Eric Fiselier · 10 years ago
  58. 05333fc Implement LWG#680, which was missed lo these many moons ago, and was reported as bug #27259. As a drive-by fix, replace the hand-rolled equivalent to addressof in __wrap_iter with the real thing. by Marshall Clow · 10 years ago
  59. 6469c3e Mark some test XFAIL for GCC 4.9 due to missing is_trivial* traits by Eric Fiselier · 10 years ago
  60. e5f1288 Implement LWG#2353: std::next is over-constrained by Marshall Clow · 10 years ago
  61. d49455e Suppress clang warnings in some tests by Eric Fiselier · 10 years ago
  62. 60d5e0e A few bits of N2994 didn't get fully implemented a long time ago. Thanks to STL@microsoft.com for the bug report by Marshall Clow · 11 years ago
  63. b1e72ec [libcxx] Make __wrap_iter work with gcc. by Nico Weber · 11 years ago
  64. eb9bfac Cleaning up the test suite; remove some includes of non-standard file <__config> by Marshall Clow · 11 years ago
  65. 612c2c7 One more #include request in the test suite from Walter Brown by Marshall Clow · 11 years ago
  66. 5a83710 Move test into test/std subdirectory. by Eric Fiselier · 11 years ago