diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2015-12-15 09:10:28 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2015-12-15 09:10:28 +0000 |
commit | 4b8d75b59643b890ff2b342a9132f09fe86c06e7 (patch) | |
tree | 43137fac3ba6f9398e1a01f00ee87ecbb3ef3a28 /llvm/unittests/Support/ThreadPool.cpp | |
parent | 942e52c70ba5ccf70b7c394c3aa0fb849407bcbd (diff) | |
download | bcm5719-llvm-4b8d75b59643b890ff2b342a9132f09fe86c06e7.tar.gz bcm5719-llvm-4b8d75b59643b890ff2b342a9132f09fe86c06e7.zip |
Mark ThreadPool unittests as unsupported on PowerPC64
Bots are crashing unexpectingly, see: https://llvm.org/bugs/show_bug.cgi?id=25829
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 255633
Diffstat (limited to 'llvm/unittests/Support/ThreadPool.cpp')
-rw-r--r-- | llvm/unittests/Support/ThreadPool.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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); } }; |