1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

SupportTests: Suppress ParallelTests on mingw for now. Investigating.

llvm-svn: 302766
This commit is contained in:
NAKAMURA Takumi 2017-05-11 06:35:51 +00:00
parent 8cdcec7222
commit 48e4cd0de9

View File

@ -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