From: Mehdi Amini Date: Tue, 15 Dec 2015 09:10:28 +0000 (+0000) Subject: Mark ThreadPool unittests as unsupported on PowerPC64 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=18d1bc23aba958d1103c0d759579bd3e39f869e6;ds=sidebyside Mark ThreadPool unittests as unsupported on PowerPC64 Bots are crashing unexpectingly, see: https://llvm.org/bugs/show_bug.cgi?id=25829 From: Mehdi Amini git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255633 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/ThreadPool.cpp b/unittests/Support/ThreadPool.cpp index 118884134ea..5fb14537568 100644 --- a/unittests/Support/ThreadPool.cpp +++ b/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); } };