Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix race conditions in test class used throughout the std::thread tests. | Eric Fiselier | 2015-04-02 | 10 | -15/+34 |
| | | | | | | | | | | | The test class 'G' reads and writes to the same static variables in its constructor, destructor and call operator. When threads are constructed using `std::thread t((G()))` there is a race condition between the destruction of the temporary and the execution of `G::operator()()`. The fix is to simply create the input before creating the thread. llvm-svn: 233946 | ||||
* | Use generic feature name for sanitizers that replace new and delete | Eric Fiselier | 2015-03-10 | 1 | -1/+1 |
| | | | | llvm-svn: 231841 | ||||
* | libc++ implements its' hash objects as deriving from std::unary_function, ↵ | Marshall Clow | 2015-01-07 | 1 | -0/+2 |
| | | | | | | and the tests test for that. STL @ MS pointed out that the standard doesn't requie these objects to derive from unary_function, and so the tests should not require that either. Change the tests to check for the embedded typedefs - which ARE required. No change to the library. llvm-svn: 225403 | ||||
* | Move test into test/std subdirectory. | Eric Fiselier | 2014-12-20 | 30 | -0/+1397 |
llvm-svn: 224658 |