From 4b8d75b59643b890ff2b342a9132f09fe86c06e7 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Tue, 15 Dec 2015 09:10:28 +0000 Subject: Mark ThreadPool unittests as unsupported on PowerPC64 Bots are crashing unexpectingly, see: https://llvm.org/bugs/show_bug.cgi?id=25829 From: Mehdi Amini llvm-svn: 255633 --- llvm/unittests/Support/ThreadPool.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'llvm/unittests/Support/ThreadPool.cpp') diff --git a/llvm/unittests/Support/ThreadPool.cpp b/llvm/unittests/Support/ThreadPool.cpp index 118884134ea..5fb14537568 100644 --- a/llvm/unittests/Support/ThreadPool.cpp +++ b/llvm/unittests/Support/ThreadPool.cpp @@ -61,6 +61,10 @@ protected: ThreadPoolTest() { // Add unsupported configuration here, example: // UnsupportedArchs.push_back(Triple::x86_64); + + // See https://llvm.org/bugs/show_bug.cgi?id=25829 + UnsupportedArchs.push_back(Triple::ppc64le); + UnsupportedArchs.push_back(Triple::ppc64); } }; -- cgit v1.2.3