Mark ThreadPool unittests as unsupported on PowerPC64
[oota-llvm.git] / unittests / Support / ThreadPool.cpp
index 118884134ea65da81bc35b7641af1e21a797dec9..5fb14537568233bff964cf65d8e95aa0c0b5c972 100644 (file)
@@ -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);
   }
 };