mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-23 11:49:50 +00:00
SupportTests: Suppress ParallelTests on mingw for now. Investigating.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302766 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
668926aef6
commit
4638198b51
@ -21,6 +21,9 @@ uint32_t array[1024 * 1024];
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
// Tests below are hanging up on mingw. Investigating.
|
||||
#if !defined(__MINGW32__)
|
||||
|
||||
TEST(Parallel, sort) {
|
||||
std::mt19937 randEngine;
|
||||
std::uniform_int_distribution<uint32_t> dist;
|
||||
@ -46,3 +49,5 @@ TEST(Parallel, parallel_for) {
|
||||
// Check that we don't write past the end of the requested range.
|
||||
ASSERT_EQ(range[2049], 1u);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user