[compiler-rt] r306504 - Re-enable wait.cc, wait4.cc, waitid.cc tests on Darwin. They used to be flaky, something to do with LeakSanitizer now being enabled on Darwin. Let's re-enable them and see if they are still flaky or not.

Kuba Mracek via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 27 22:03:28 PDT 2017


Author: kuba.brecka
Date: Tue Jun 27 22:03:28 2017
New Revision: 306504

URL: http://llvm.org/viewvc/llvm-project?rev=306504&view=rev
Log:
Re-enable wait.cc, wait4.cc, waitid.cc tests on Darwin. They used to be flaky, something to do with LeakSanitizer now being enabled on Darwin. Let's re-enable them and see if they are still flaky or not.


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=306504&r1=306503&r2=306504&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/wait.cc Tue Jun 27 22:03:28 2017
@@ -4,8 +4,6 @@
 // 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=306504&r1=306503&r2=306504&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/wait4.cc Tue Jun 27 22:03:28 2017
@@ -5,7 +5,6 @@
 // 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=306504&r1=306503&r2=306504&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/waitid.cc Tue Jun 27 22:03:28 2017
@@ -1,8 +1,6 @@
 // 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