Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix unused parameters and variables | Eric Fiselier | 2016-12-23 | 1 | -1/+2 |
| | | | | llvm-svn: 290459 | ||||
* | Move native_handle thread tests to test/libcxx | Eric Fiselier | 2016-06-22 | 1 | -54/+0 |
| | | | | llvm-svn: 273341 | ||||
* | Remove unused local var. Patch from STL@microsoft.com | Eric Fiselier | 2016-06-14 | 1 | -1/+1 |
| | | | | llvm-svn: 272622 | ||||
* | Fix TEST_HAS_NO_EXCEPTIONS misspelling in the test suite. | Eric Fiselier | 2016-06-02 | 1 | -1/+1 |
| | | | | llvm-svn: 271501 | ||||
* | Mark LWG issue 2250 as complete | Eric Fiselier | 2016-06-02 | 2 | -0/+40 |
| | | | | llvm-svn: 271475 | ||||
* | Remove test_atomic.h header | Eric Fiselier | 2015-08-19 | 1 | -3/+2 |
| | | | | | | | Because <atomic> can now be used in C++03 there is no need for the test_atomic.h header. This commit removes the header and converts all usages to use <atomic> instead. llvm-svn: 245468 | ||||
* | Use TestAtomic instead of std::atomic so the test can run in C++03 | Eric Fiselier | 2015-08-19 | 1 | -2/+3 |
| | | | | llvm-svn: 245415 | ||||
* | Fix race condition in thread test. | Eric Fiselier | 2015-05-19 | 1 | -8/+25 |
| | | | | llvm-svn: 237745 | ||||
* | Fix race conditions in test class used throughout the std::thread tests. | Eric Fiselier | 2015-04-02 | 5 | -5/+10 |
| | | | | | | | | | | | 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 | ||||
* | Move test into test/std subdirectory. | Eric Fiselier | 2014-12-20 | 6 | -0/+328 |
llvm-svn: 224658 |