1. 9fdc63a Disables tests that fail to compile by Dan Albert · 10 years ago
  2. 6f56ab7 Adds a basic test wrapper for Android by Dan Albert · 10 years ago
  3. 471f3c6 Fix a couple of -Wabsolute-value warnings in the libc++ tests by Marshall Clow · 10 years ago
  4. 0d6dcb5 Remove definition of std::fmaf from libc++. Fixes bug #18910. This function should come from the C standard library. As a drive-by fix, update the tests to remove a warning from -Wabsolute-value by Marshall Clow · 10 years ago
  5. 908b5d7 Back out the <type_traits> changes from r198431; they were breaking when building with glibc. Need to find a better solution for PR18218. by Marshall Clow · 11 years ago
  6. 854a7a0 Patch by Howard. First part of fix for PR18218; add type traits needed to do the right thing. Fix the problems in PR18218 for isnan and pow - they also need to be applied to the other functions in <cmath>. Also, a drive-by fix for the test - now actually calls test_abs() by Marshall Clow · 11 years ago
  7. 320c80f Implement literal suffixes for compled by Marshall Clow · 11 years ago
  8. 641d3d8 XFAIL a few tests on darwin12 by Howard Hinnant · 11 years ago
  9. 1c44f51 Zhihao Yuan noted that a move assignment operation was missing from std::adjacent_difference. Fixed. by Howard Hinnant · 11 years ago
  10. ab61b2c War on tabs by Howard Hinnant · 11 years ago
  11. a61e6f8 Implement constexpr (n3302) and fix operator *= and /= by Marshall Clow · 11 years ago
  12. 8f72d5c Fix a couple of bugs in linear_congruential_engine::seed. Regression test added. by Howard Hinnant · 11 years ago
  13. ae7bf9d Marshall Clow found some divide-by-zero warnings with UBSan in rand's binomial_distribution test. This eliminates the divide-by-zeros and describes in comments the numerical difficulties the test is having. Each of the problematic tests are exploring edge cases of the distribution. by Howard Hinnant · 11 years ago
  14. bdea27b Fix bug in test; found by AddressSanitizer by Marshall Clow · 11 years ago
  15. c19fe86 Fix bug in test; found by AddressSanitizer by Marshall Clow · 11 years ago
  16. 548d392 [tests] Mark another stream input expected failure (with system libc++). by Daniel Dunbar · 11 years ago
  17. b05a556 Make <cmath> classification macros work with integral types. by Howard Hinnant · 11 years ago
  18. 83e2c4d Move common header files into a 'support' directory; make 'testit' include -I to that directory; rename 'iterators.h' to 'iterator_test.h'; remove hard-coded paths to include files from more than 350 source files by Marshall Clow · 12 years ago
  19. 8226d0b ...and then there was one. Only one copy of 'iterators.h' in the test tree for libc++ by Marshall Clow · 12 years ago
  20. 0a69fa1 Zhang Xiongpang: Add definitions for const data members. Fixes http://llvm.org/bugs/show_bug.cgi?id=14585. by Howard Hinnant · 12 years ago
  21. 2d3f4ee Add overflow check to tanh(complex) and reduce to finite answer. Fixes http://llvm.org/bugs/show_bug.cgi?id=13874 by Howard Hinnant · 12 years ago
  22. 410f2de constexpr applied to <complex>. by Howard Hinnant · 12 years ago
  23. 8efd3da Update <random> with constexpr support. Patch contributed by Jonathan Sauer. by Howard Hinnant · 12 years ago
  24. 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
  25. 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
  26. e3e3291 Fixed PR10574: http://llvm.org/bugs/show_bug.cgi?id=10574 by Howard Hinnant · 13 years ago
  27. f6cc833 Warning suppression in test. by Howard Hinnant · 13 years ago
  28. 783b810 Warning suppression in test. by Howard Hinnant · 13 years ago
  29. 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
  30. ef3b2e2 Fix bug in Sseq constraints found by Seth Cantrell by Howard Hinnant · 13 years ago
  31. 995676a LWG 1522 by Howard Hinnant · 14 years ago
  32. b64f8b0 license change by Howard Hinnant · 14 years ago
  33. 73d21a4 Changed __config to react to all of clang's currently documented has_feature flags, and renamed _LIBCPP_MOVE to _LIBCPP_HAS_NO_RVALUE_REFERENCES to be more consistent with the rest of the libc++'s flags, and with clang's nomenclature. by Howard Hinnant · 14 years ago
  34. 0e20cae Fixing whitespace problems by Howard Hinnant · 14 years ago
  35. 3ec3184 Implemented some adaptor constructors which I had missed. by Howard Hinnant · 14 years ago
  36. ebef745 [numeric.iota] by Howard Hinnant · 14 years ago
  37. 5430540 [rand.dist.samp.plinear]. This means we've got a fully tested and functional <random>! 489 tests over 48 sections are passing. :-) The only thing still on my plate in this area is to back-port some of this technology to random_shuffle/shuffle in <algorithm>. That will involve shuffling header bits around (<random> depepends on <algorithm>), but it won't entail that much development (compared to what has been required for <random>). by Howard Hinnant · 14 years ago
  38. d6d1171 [rand.dist.samp.pconst] plus some bug fixes in the tests of the other distributions by Howard Hinnant · 14 years ago
  39. 551d8e4 [rand.dist.samp.discrete] by Howard Hinnant · 14 years ago
  40. 321b4bb [rand.dist.norm.t] by Howard Hinnant · 14 years ago
  41. d8bc09b [rand.dist.norm.f] by Howard Hinnant · 14 years ago
  42. ed9b2aa Better cauchy tests by Howard Hinnant · 14 years ago
  43. d7d0113 [rand.dist.norm.cauchy]. I'm having trouble testing the output as all statistical properties are undefined. They do not converge upon any one value as the number of samples increases. Suggestions for tests welcome. by Howard Hinnant · 14 years ago
  44. 2bc36fc [rand.dist.norm.lognormal] by Howard Hinnant · 14 years ago
  45. c2b0dc7 [rand.dist.pois.extreme] by Howard Hinnant · 14 years ago
  46. 34e8a57 [rand.dist.bern.geo] by Howard Hinnant · 14 years ago
  47. f2fe5d5 [rand.dist.bern.negbin] by Howard Hinnant · 14 years ago
  48. df40dc6 Beefed up the tests for all of the distributions to include checks against the expected skewness and kurtosis by Howard Hinnant · 14 years ago
  49. 9de6e30 [rand.dist.pois.weibull] by Howard Hinnant · 14 years ago
  50. 97dc2f3 [rand.dist.norm.chisq] by Howard Hinnant · 14 years ago
  51. 6add8dd Revisited [rand.dist.bern.bin] and [rand.dist.pois.poisson] with better algorithms by Howard Hinnant · 14 years ago
  52. 4ff556c [rand.dist.pois.poisson] by Howard Hinnant · 14 years ago
  53. f417abe [rand.dist.pois.gamma] by Howard Hinnant · 14 years ago
  54. c7c4913 partial [rand.dist.pois.gamma] by Howard Hinnant · 14 years ago
  55. a64111c [rand.dist.norm.normal] by Howard Hinnant · 14 years ago
  56. 30a840f [rand.dist.pois.exp] by Howard Hinnant · 14 years ago
  57. 5f9b133 tests for [rand.dist.bern.bin] by Howard Hinnant · 14 years ago
  58. 03aad81 [rand.dist.bern.bin]. The evaluation function for this binomial distribution is hopefully just a placeholder. It is using the simplest and slowest method for computing the distribution and needs to be upgraded. by Howard Hinnant · 14 years ago
  59. f5256e1 Wiped out some non-ascii characters that snuck into the copyright. by Howard Hinnant · 14 years ago
  60. bc8d3f9 libcxx initial import by Howard Hinnant · 14 years ago