1. 9efdc0b libc++: Add some missing #includes to atomics tests. libc++ doesn't need these by Richard Smith · 12 years ago
  2. d3eca75 Fix the remaining atomic tests, all of which were wrong for the case where a by David Chisnall · 12 years ago
  3. 1ee87fa Fix test cases that were trying to make atomic things that are not trivially copyable. by David Chisnall · 12 years ago
  4. 8efd3da Update <random> with constexpr support. Patch contributed by Jonathan Sauer. by Howard Hinnant · 12 years ago
  5. 2cf89a7 Fix test for default constructor of discrete_distribution. This partially addresses http://llvm.org/bugs/show_bug.cgi?id=12436. by Howard Hinnant · 12 years ago
  6. dc1345f I believe tuple is still under development in the standard. Daniel Krugler is/will be making convincing arguments that a modified form of LWG 2051 (currently NAD Future) is easily acheivable and desirable. He has demonstrated that a tuple<T...> where all of the T are implicitly convertible from U... should have a tuple constructor that is also implicit, instead of explicit. This would support the use cases in LWG 2051 while not undermining T... with explicit conversions from U.... This check-in is an experimental implementation of Daniel's work. I believe this work to be mature enough to warrant inclusion into libc++. If anyone sees real-world problems that this check in causes, please let me know and I will revert it, and provide the feedback to the LWG. by Howard Hinnant · 12 years ago
  7. 87c61a6 Allow libc++ to be built with CMake from within the LLVM tree. The libc++ part is just some renaming as the variable was already in use, conflicting with something else in the LLVM tree. Contributed by Ruben Van Boxem. by Howard Hinnant · 12 years ago
  8. b407d45 Don't refer to a function that doesn't exist in the quick_exit test. by David Chisnall · 12 years ago
  9. 558ae17 Fix moneypunct_byname algorithm to more accurately represent C locales in C++. by Jeffrey Yasskin · 12 years ago
  10. f2b2cc6 Make the failure reporting in testit a bit more useful. by David Chisnall · 12 years ago
  11. a231c37 update test for explicit bool operator. by Howard Hinnant · 12 years ago
  12. 896baa2 Silence some warnings in a test. by Howard Hinnant · 12 years ago
  13. 4300839 Hook up to the new clang __is_trivially_constructible and __is_trivially_assignable traits. Fixes r10925427 and http://llvm.org/bugs/show_bug.cgi?id=12038. by Howard Hinnant · 12 years ago
  14. b9344c2 Use Xcode relative compilers when possible by Dave Zarzycki · 12 years ago
  15. 3fadda3 Modernize relational operators for shared_ptr and unique_ptr. This includes adding support for nullptr, and using less<T*>. Fixes http://llvm.org/bugs/show_bug.cgi?id=12056. by Howard Hinnant · 12 years ago
  16. 6df1412 Relax pointer output test to accept glibc's output. Patch supplied by Jeffrey Yasskin. by Howard Hinnant · 12 years ago
  17. 01198b3 Exercise rvalue arguements to make_shared for C++11 mode. by Howard Hinnant · 12 years ago
  18. 2848444 tuple was accidentally lacking a valid copy assignment operator. It went undetected because I had failed to test assigning from a const lvalue. This fixes http://llvm.org/bugs/show_bug.cgi?id=11921 by Howard Hinnant · 12 years ago
  19. b04ad41 Do not parse sign if a sign is not the next legal character when parsing floating point from an input stream. Fixes http://llvm.org/bugs/show_bug.cgi?id=11871 by Howard Hinnant · 12 years ago
  20. 8e50a9c Remove quotes from locale name identifier. Credit Edward Meewis. by Howard Hinnant · 13 years ago
  21. 40c13d3 Starting using murmur2 when combining multiple size_t's into a single hash, and also for basic_string. Also made hash<thread::id> ever so slighly more portable. I had to tweak one test which is questionable (definitely not portable) anyway. by Howard Hinnant · 13 years ago
  22. f836d53 unord test fixes by Edward Meewis by Howard Hinnant · 13 years ago
  23. f6d875f Fix http://llvm.org/bugs/show_bug.cgi?id=11428. Fix provided by Alberto Ganesh Barbati by Howard Hinnant · 13 years ago
  24. ce6884c Fix ratio arithmetic with zero by Howard Hinnant · 13 years ago
  25. b97de44 Fix <rdar://problem/10256836> getline of an empty string mistakenly causes failure by Howard Hinnant · 13 years ago
  26. c6fe8ca Fix <rdar://problem/10255403> match_results::begin() is off by one by Howard Hinnant · 13 years ago
  27. c0d0cba Windows porting work by Ruben Van Boxem by Howard Hinnant · 13 years ago
  28. 8452d21 Updated testit to run on Windows and fresh Windows results by Ruben Van Boxem by Howard Hinnant · 13 years ago
  29. 1c3ec6d Another installment on debug mode. This addresses list. However this should be considered a temporary state. The API of the debug database and how vector and list use it, is unsatisfactory at the moment. It is both inefficient and overly verbose. I wanted to get this functionality checked in though. In the next day or so I'll refactor what is there in an attempt to streamline things. by Howard Hinnant · 13 years ago
  30. 5983252 Fix test bugs found by David Chisnall by Howard Hinnant · 13 years ago
  31. 9e02b90 Fix locales used in re tests. by David Chisnall · 13 years ago
  32. 2fb1a9d Remove undefines in cstdio test. Fix these properly rather than bodging the tests. by David Chisnall · 13 years ago
  33. 8669889 More +.UTF-8 fixes. by David Chisnall · 13 years ago
  34. 709c3d2 Fix failure found by David Chisnall by Howard Hinnant · 13 years ago
  35. db2e99f More fixes to the tests. Add UTF-8 encoding to all locales that don't specify one. Undefine some stdio.h macros that break the tests. by David Chisnall · 13 years ago
  36. a824f53 Fully-qualify some more locales in the tests... by David Chisnall · 13 years ago
  37. eb2c855 Don't check STREAMS error numbers on systems that don't implement the obsolete (as described in POSIX2008) XSI STREAMS extension. by David Chisnall · 13 years ago
  38. 6b8ac3a More locale cleanups. Fully specify locales in iostream tests. by David Chisnall · 13 years ago
  39. e2f2a15 Localisation test fixes to make the tests pass on FreeBSD, which does not provide shortened forms of the various locales (e.g. en_US, rather than en_US.UTF-8 / en_US.ISO{whatever}). by David Chisnall · 13 years ago
  40. 0442b12 The vector test suite now passes for no-debug, debug-lite and debug-regular by Howard Hinnant · 13 years ago
  41. 92a836c Reimplemented much of <istream> such that single character extractions do not check to see if this is the last character in the stream and thus never set eofbit. This fixes http://llvm.org/bugs/show_bug.cgi?id=10817 . This fix requires a recompiled libc++.dylib to be fully implemented. The recompiled libc++.dylib is ABI compatible with that shipped on Lion. by Howard Hinnant · 13 years ago
  42. e3e3291 Fixed PR10574: http://llvm.org/bugs/show_bug.cgi?id=10574 by Howard Hinnant · 13 years ago
  43. bf6666f Correct test. by Howard Hinnant · 13 years ago
  44. 541cb30 Adjust two tests to account for a nasty change in copying behavior by Sean Hunt · 13 years ago
  45. 13aaf42 Make all fstream tests use tmpnam if creating files, rather than by Sean Hunt · 13 years ago
  46. e6440c6 Do a litmus test of using tmpnam to generate safe temporary file names by Sean Hunt · 13 years ago
  47. 737a351 Given that __underlying_type is now available in clang, implement by Sean Hunt · 13 years ago
  48. 2d81f3d Give A an explicitly non-throwing destructor so that B's destructor is by Sean Hunt · 13 years ago
  49. a78264f Fix wchar tests by not assuming that tm is complete and by using the by Sean Hunt · 13 years ago
  50. ac6de54 Fixing up some ABI issues by Howard Hinnant · 13 years ago
  51. 12c3d37 <inttypes.h> does not necessarily include <stdint.h>. Accordingly, do by Sean Hunt · 13 years ago
  52. 61aa601 Correct for new rules regarding implicitly deleted special members. http://llvm.org/bugs/show_bug.cgi?id=10191 by Howard Hinnant · 13 years ago
  53. a2a08b4 test for pair piecewise construction by Howard Hinnant · 13 years ago
  54. 58cd823 noexcept for <stack>. This completes noexcept for Chapter 23 [containers]. by Howard Hinnant · 13 years ago
  55. 6a09441 noexcept for <queue>. by Howard Hinnant · 13 years ago
  56. 04dae1d noexcept for <unordered_set>. by Howard Hinnant · 13 years ago
  57. 5f2f14c noexcept for <unordered_map>. by Howard Hinnant · 13 years ago
  58. b2e2a8f noexcept for <set>. Plus a few fixes to noexcept for <map>. by Howard Hinnant · 13 years ago
  59. 7686add noexcept for <map>. by Howard Hinnant · 13 years ago
  60. d1d27a4 noexcept for <vector>. This also includes installing move_if_noexcept() into vector. by Howard Hinnant · 13 years ago
  61. 53f7d4c Bring noexcept for <string> inline with other containers. by Howard Hinnant · 13 years ago
  62. c560727 noexcept for <list>. by Howard Hinnant · 13 years ago
  63. b965fed noexcept for <forward_list>. by Howard Hinnant · 13 years ago
  64. 009b2c4 After sleeping on it I've decided that all special members that can be noexcept, should be declared so. The client has the traits to detect and branch on this information, and it is often an important optimization. Give deque() a noexcept. Add test for deque default constructor and deque destructor. by Howard Hinnant · 13 years ago
  65. 93f2764 Add noexcept tests for deque. by Howard Hinnant · 13 years ago
  66. 1694d23 noexcept for <memory>. I've added a few extension noexcept to: allocator_traits<A>::deallocate, allocaate<T>::deallocate, return_temporary_buffer, and default_delete<T>::operator()(T*) const. My rationale was: If a std-dicated noexcept function needs to call another std-defined function, that called function must be noexcept. We're all a little new to noexcept, so things like this are to be expected. Also included fix for broken __is_swappable trait pointed out by Marc Glisse, thanks Marc|. And fixed a test case for is_nothrow_destructible. Destructors are now noexcept by default| by Howard Hinnant · 13 years ago
  67. 0148a83 Simplied bind using __invoke. In the process, found and fixed a couple of bugs. C++11 only. by Howard Hinnant · 13 years ago
  68. 3dd965b This commit was accidental. Reverting. by Howard Hinnant · 13 years ago
  69. 932209b A bunch of future tests got invalidated with the latest updates to thread. Fixed the tests. by Howard Hinnant · 13 years ago
  70. 6cbf9f9 Fix and beef up test bug for move_if_noexcept by Howard Hinnant · 13 years ago
  71. 97ecd64 Clean up a bunch of warnings in the tests, 3 of which actually turned out to be test bugs. by Howard Hinnant · 13 years ago
  72. ad935d5 Brought call_once variadic call up to current spec, which allows move-only functors and move-only arguments, but disallows functors with non-const lvalue reference parameters. by Howard Hinnant · 13 years ago
  73. 656bdc3 Brought thread variadic constructor up to current spec, which allows move-only functors and move-only arguments, but disallows functors with non-const lvalue reference parameters. by Howard Hinnant · 13 years ago
  74. 37c53b6 Redesign of result_of to handle reference-qualified member functions by Howard Hinnant · 13 years ago
  75. f6cc833 Warning suppression in test. by Howard Hinnant · 13 years ago
  76. 783b810 Warning suppression in test. by Howard Hinnant · 13 years ago
  77. a5a0ba8 Warning suppression in test. by Howard Hinnant · 13 years ago
  78. e80c36e Correction to hexfloat hack. by Howard Hinnant · 13 years ago
  79. d515df2 Fix test bug. by Howard Hinnant · 13 years ago
  80. f1151ef Suppress some warings in the tests. by Howard Hinnant · 13 years ago
  81. 2d01bf0 Suppress some warings in the tests. by Howard Hinnant · 13 years ago
  82. 0a11111 http://llvm.org/bugs/show_bug.cgi?id=9854. Also created an emulated hexfloat literal for use in some of the tests. <sigh> And cleaned up some harmless but irritating warnings in the tests. by Howard Hinnant · 13 years ago
  83. 6063ec1 A much improved type_traits for C++0x. Not yet done: is_trivially_constructible, is_trivially_assignable and underlying_type. by Howard Hinnant · 13 years ago
  84. 6b41c60 Corrected some bugs in both memory and the tests. Preparing for being able to turn on support for alias templates. by Howard Hinnant · 13 years ago
  85. ef3b2e2 Fix bug in Sseq constraints found by Seth Cantrell by Howard Hinnant · 13 years ago
  86. 3e93e96 Corrected tests for http://llvm.org/bugs/show_bug.cgi?id=9351 by Howard Hinnant · 13 years ago
  87. b8a03c7 ... And these wonderful tests. by Howard Hinnant · 13 years ago
  88. 770a3c5 <rdar://problem/9073695> std::uncaught_exception() becomes true before evaluating the throw-expression rather than after by Nick Kledzik · 13 years ago
  89. 6e5e7e7 Corrected const-correctness on nullptr type_traits, and beefed up the test for nullptr_t. by Howard Hinnant · 13 years ago
  90. e7c8da6 http://llvm.org/bugs/show_bug.cgi?id=9326 by Howard Hinnant · 13 years ago
  91. c4cbb5b Update testit to default to clang by Howard Hinnant · 13 years ago
  92. 211f0ee Bug 9096 - list::iterator not default constructible by Howard Hinnant · 13 years ago
  93. 80f9180 minor corrections to test, and hook is_base_of up to clang intrinsic by Howard Hinnant · 13 years ago
  94. 4ff9d35 placeholder test by Howard Hinnant · 14 years ago
  95. f9e1c7e Eliminate the C++0x-only is_convertible testing function that accepts by Douglas Gregor · 14 years ago
  96. e76496c Teach the Lit configuration to actually use the cxx0x setting when by Chandler Carruth · 14 years ago
  97. 0e1493e LWG 1385 [FCD] tuple_cat should be a single variadic signature (http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-active.html#1385). This issue is only in Ready status, meaning it is not official, but probably will be this March in Madrid. It was tentatively accepted in Batavia with the previso that Bill and I didn't have any problems implementing it. This is my part of that agreement. by Howard Hinnant · 14 years ago
  98. 626916f Add CMake build and fix major Linux blockers. by Michael J. Spencer · 14 years ago
  99. b8f787b Test adjustment for recent changes in allocator_traits by Howard Hinnant · 14 years ago
  100. f190e97 This got accidentally removed by Howard Hinnant · 14 years ago