[compiler-rt] r303662 - Disable flaky ASan tests temporarily on darwin

Adam Nemet via llvm-commits llvm-commits at lists.llvm.org
Tue May 23 10:50:48 PDT 2017


Author: anemet
Date: Tue May 23 12:50:48 2017
New Revision: 303662

URL: http://llvm.org/viewvc/llvm-project?rev=303662&view=rev
Log:
Disable flaky ASan tests temporarily on darwin

Modified:
    compiler-rt/trunk/test/asan/TestCases/Posix/wait3.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/wait3.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/wait3.cc?rev=303662&r1=303661&r2=303662&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/wait3.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/wait3.cc Tue May 23 12:50:48 2017
@@ -4,7 +4,7 @@
 // RUN: %clangxx_asan -DWAIT3_RUSAGE -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
 // RUN: %clangxx_asan -DWAIT3_RUSAGE -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s
 
-// UNSUPPORTED: android
+// UNSUPPORTED: android,darwin
 
 #include <assert.h>
 #include <sys/wait.h>

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc?rev=303662&r1=303661&r2=303662&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc Tue May 23 12:50:48 2017
@@ -5,6 +5,7 @@
 // RUN: %clangxx_asan -DWAIT4_RUSAGE -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s
 
 // XFAIL: android
+// UNSUPPORTED: darwin
 
 #include <assert.h>
 #include <sys/wait.h>




More information about the llvm-commits mailing list