[compiler-rt] r303885 - Disable two more flaky ASan wait* tests temporarily on Darwin

Adam Nemet via llvm-commits llvm-commits at lists.llvm.org
Thu May 25 10:24:54 PDT 2017


Author: anemet
Date: Thu May 25 12:24:54 2017
New Revision: 303885

URL: http://llvm.org/viewvc/llvm-project?rev=303885&view=rev
Log:
Disable two more flaky ASan wait* tests temporarily on Darwin

Modified:
    compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc?rev=303885&r1=303884&r2=303885&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc Thu May 25 12:24:54 2017
@@ -4,6 +4,7 @@
 // RUN: %clangxx_asan -DWAITPID -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
 // RUN: %clangxx_asan -DWAITPID -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s
 
+// UNSUPPORTED: darwin
 
 #include <assert.h>
 #include <sys/wait.h>

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc?rev=303885&r1=303884&r2=303885&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc Thu May 25 12:24:54 2017
@@ -1,6 +1,8 @@
 // RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
 // RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s
 
+// UNSUPPORTED: darwin
+
 #include <assert.h>
 #include <sys/wait.h>
 #include <unistd.h>




More information about the llvm-commits mailing list