[msan] Disable flaky fork.cc on PPC64.
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>
Fri, 23 Sep 2016 23:41:44 +0000 (23:41 +0000)
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>
Fri, 23 Sep 2016 23:41:44 +0000 (23:41 +0000)
This test is very flaky on PPC64 (both BE and LE), but not on other platforms.

llvm-svn: 282315

compiler-rt/test/msan/fork.cc

index 78a62d5..e14ee81 100644 (file)
@@ -10,6 +10,9 @@
 // a kernel bug:
 // https://lkml.org/lkml/2014/2/17/324
 
+// Flaky on PPC64.
+// UNSUPPORTED: powerpc64-target-arch
+// UNSUPPORTED: powerpc64le-target-arch
 
 #include <pthread.h>
 #include <unistd.h>
@@ -89,7 +92,7 @@ int main() {
       exit(0);
     }
   }
-  
+
   for (int i = 0; i < kChildren; ++i) {
     pid_t p;
     while ((p = wait(NULL)) == -1) {  }