forked from OSchip/llvm-project
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
This commit is contained in:
parent
942e52c70b
commit
4b8d75b596
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue