Skip to content

Commit

Permalink
Mark ThreadPool unittests as unsupported on PowerPC64
Browse files Browse the repository at this point in the history
Bots are crashing unexpectingly, see: https://llvm.org/bugs/show_bug.cgi?id=25829

From: Mehdi Amini <[email protected]>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255633 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
joker-eph committed Dec 15, 2015
1 parent 41f711c commit 18d1bc2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions unittests/Support/ThreadPool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ class ThreadPoolTest : public testing::Test {
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);
}
};

Expand Down

0 comments on commit 18d1bc2

Please sign in to comment.