| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix unused parameters and variables | Eric Fiselier | 2016-12-23 | 18 | -28/+11 |
| * | Enable the -Wsign-compare warning to better support MSVC | Eric Fiselier | 2016-12-11 | 32 | -147/+151 |
| * | [libcxx] [test] Fix MSVC warning C4244 "conversion from 'X' to 'Y', possible ... | Stephan T. Lavavej | 2016-12-08 | 3 | -3/+3 |
| * | [libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", pa... | Stephan T. Lavavej | 2016-12-06 | 2 | -2/+4 |
| * | [libcxx] [test] D27027: Strip trailing whitespace. | Stephan T. Lavavej | 2016-11-23 | 14 | -25/+25 |
| * | [libcxx] [test] D27020: Fix MSVC warning C4245 "conversion from 'X' to 'Y', s... | Stephan T. Lavavej | 2016-11-23 | 4 | -4/+4 |
| * | [libcxx] [test] D27018: Fix MSVC warning C4018 "signed/unsigned mismatch", pa... | Stephan T. Lavavej | 2016-11-23 | 2 | -2/+2 |
| * | [libcxx] [test] D27013: Fix MSVC warning C4018 "signed/unsigned mismatch", pa... | Stephan T. Lavavej | 2016-11-23 | 123 | -193/+316 |
| * | [libcxx] [test] D26812: In random tests, use real static_asserts and silence ... | Stephan T. Lavavej | 2016-11-18 | 6 | -20/+84 |
| * | Fixes for LWG 2598, 2686, 2739, 2742, 2747, and 2759, which were adopted last... | Marshall Clow | 2016-11-14 | 12 | -4/+208 |
| * | [libcxx] [test] D26314: Fix MSVC warning C4189 "local variable is initialized... | Stephan T. Lavavej | 2016-11-14 | 3 | -0/+3 |
| * | [libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER. | Stephan T. Lavavej | 2016-11-04 | 9 | -11/+27 |
| * | Protect tests that expect an exception for an unknown std::random_device | Roger Ferrer Ibanez | 2016-11-01 | 2 | -2/+4 |
| * | Remove usages of _LIBCPP_CONSTEXPR under test/std | Eric Fiselier | 2016-10-12 | 4 | -12/+20 |
| * | Remove all _LIBCPP_VERSION tests from under test/std | Eric Fiselier | 2016-10-08 | 4 | -32/+0 |
| * | Remove test for the sign of a NaN - doesn't work on MIPS, not strictly legal.... | Marshall Clow | 2016-08-11 | 1 | -1/+0 |
| * | Implement LCM and GCD for C++17. Same code as for Library Fundamentals TS. | Marshall Clow | 2016-07-26 | 6 | -0/+359 |
| * | Fix portability issues in <random> tests. Patch from STL@microsoft.com | Eric Fiselier | 2016-07-24 | 1 | -1/+3 |
| * | Add SFINAE on additional overloads of std::complex functions. Fixes PR19921. | Eric Fiselier | 2016-07-20 | 1 | -0/+74 |
| * | Add array bounds assertions to satisfy MSVC's /analyze flag. Patch from STL@m... | Eric Fiselier | 2016-06-26 | 1 | -0/+3 |
| * | Move remaining _LIBCPP_VERSION tests into test/libcxx | Eric Fiselier | 2016-06-22 | 5 | -102/+0 |
| * | Avoid huge main() functions and huge arrays. Patch from STL@microsoft.com | Eric Fiselier | 2016-06-22 | 9 | -2455/+2686 |
| * | Fix operator precedence mistake in valarray/not.pass.cpp. Patch from STL@micr... | Eric Fiselier | 2016-06-22 | 1 | -1/+1 |
| * | Improve portability of random_device tests. Patch from STL@microsoft.com | Eric Fiselier | 2016-06-15 | 2 | -2/+6 |
| * | Replace __cplusplus comparisons and dialect __has_feature checks with TEST_ST... | Eric Fiselier | 2016-06-14 | 1 | -0/+1 |
| * | Rename variables to prevent shadowing. Patch from STL@microsoft.com | Eric Fiselier | 2016-06-14 | 32 | -372/+372 |
| * | Rename some test data (and make it const) to rid us of some shadowing warning... | Marshall Clow | 2016-06-06 | 27 | -315/+315 |
| * | Remove trailing whitespace in test suite. Approved by Marshall Clow. | Eric Fiselier | 2016-06-01 | 9 | -14/+14 |
| * | [libcxx] Improve tests to use the UNSUPPORTED lit directive | Asiri Rathnayake | 2016-05-28 | 4 | -13/+5 |
| * | Tolerate incorrect return type for 'isinf' and 'isnan' in tests. | Eric Fiselier | 2016-05-27 | 3 | -63/+48 |
| * | Implement P0030R1: Introduce a 3-Argument Overload to std::hypot | Marshall Clow | 2016-05-17 | 1 | -0/+23 |
| * | Guard use of <unistd.h> in test. | Eric Fiselier | 2016-05-03 | 1 | -17/+22 |
| * | Initialize local doubles to NaN. Patch from STL@microsoft.com | Eric Fiselier | 2016-05-02 | 2 | -28/+30 |
| * | Void cast runtime-unused variables. Patch from STL@microsoft.com | Eric Fiselier | 2016-05-02 | 2 | -1/+3 |
| * | Fix some non-standard parts of our test suite. Reported by STL | Eric Fiselier | 2016-04-22 | 2 | -0/+2 |
| * | Add missing include of <algorithm> | Marshall Clow | 2016-04-22 | 2 | -0/+2 |
| * | Add a bunch of missing includes in the test suite to make it more portable. F... | Marshall Clow | 2016-01-12 | 1 | -0/+1 |
| * | [libcxx] Fixup a few fumbles in the initial no-exceptions XFAILs list. | Asiri Rathnayake | 2015-11-12 | 1 | -1/+0 |
| * | Make it possible to build a no-exceptions variant of libcxx. | Asiri Rathnayake | 2015-11-10 | 3 | -0/+3 |
| * | Remove unneeded initialisation of fenv_t and fexcept_t. | Ed Schouten | 2015-03-15 | 1 | -2/+2 |
| * | Add support for arc4random() to random_device. | Ed Schouten | 2015-03-10 | 1 | -6/+4 |
| * | Move test into test/std subdirectory. | Eric Fiselier | 2014-12-20 | 820 | -0/+43889 |