[compiler-rt] r282315 - [msan] Disable flaky fork.cc on PPC64.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 23 16:41:45 PDT 2016


Author: eugenis
Date: Fri Sep 23 18:41:44 2016
New Revision: 282315

URL: http://llvm.org/viewvc/llvm-project?rev=282315&view=rev
Log:
[msan] Disable flaky fork.cc on PPC64.

This test is very flaky on PPC64 (both BE and LE), but not on other platforms.

Modified:
    compiler-rt/trunk/test/msan/fork.cc

Modified: compiler-rt/trunk/test/msan/fork.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/fork.cc?rev=282315&r1=282314&r2=282315&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/fork.cc (original)
+++ compiler-rt/trunk/test/msan/fork.cc Fri Sep 23 18:41:44 2016
@@ -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) {  }




More information about the llvm-commits mailing list