[compiler-rt] r306551 - Revert r306504: Re-enable wait.cc, wait4.cc, waitid.cc tests on Darwin.

Kuba Mracek via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 28 08:13:09 PDT 2017


Author: kuba.brecka
Date: Wed Jun 28 08:13:09 2017
New Revision: 306551

URL: http://llvm.org/viewvc/llvm-project?rev=306551&view=rev
Log:
Revert r306504: Re-enable wait.cc, wait4.cc, waitid.cc tests on Darwin.


Modified:
    compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc
    compiler-rt/trunk/test/asan/TestCases/Posix/wait4.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=306551&r1=306550&r2=306551&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc Wed Jun 28 08:13:09 2017
@@ -4,6 +4,8 @@
 // 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>
 #include <unistd.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=306551&r1=306550&r2=306551&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc Wed Jun 28 08:13:09 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>

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=306551&r1=306550&r2=306551&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc Wed Jun 28 08:13:09 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