[compiler-rt] r350331 - Re-disable the sanitizer_common/TestCases/Posix/getfsent.cc test. Recent macOS versions don't have the /etc/fstab file any more so we cannot test getfsent/setfsent APIs on Darwin.

Kuba Mracek via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 3 09:26:30 PST 2019


Author: kuba.brecka
Date: Thu Jan  3 09:26:29 2019
New Revision: 350331

URL: http://llvm.org/viewvc/llvm-project?rev=350331&view=rev
Log:
Re-disable the sanitizer_common/TestCases/Posix/getfsent.cc test. Recent macOS versions don't have the /etc/fstab file any more so we cannot test getfsent/setfsent APIs on Darwin.


Modified:
    compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/getfsent.cc

Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/getfsent.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/getfsent.cc?rev=350331&r1=350330&r2=350331&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/getfsent.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/getfsent.cc Thu Jan  3 09:26:29 2019
@@ -1,6 +1,6 @@
 // RUN: %clangxx -O0 -g %s -o %t && %run %t 2>&1 | FileCheck %s
 //
-// UNSUPPORTED: linux, solaris
+// UNSUPPORTED: linux, darwin, solaris
 
 #include <assert.h>
 #include <errno.h>




More information about the llvm-commits mailing list