[compiler-rt] r238874 - Tests: disable test of /proc filesystem on Darwin.
Tim Northover
tnorthover at apple.com
Tue Jun 2 14:59:04 PDT 2015
Author: tnorthover
Date: Tue Jun 2 16:59:04 2015
New Revision: 238874
URL: http://llvm.org/viewvc/llvm-project?rev=238874&view=rev
Log:
Tests: disable test of /proc filesystem on Darwin.
We don't have it. I'm not entirely sure "Posix" is a good name for that
directory, but perhaps we should see how it develops.
Modified:
compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/lit.local.cfg
Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/lit.local.cfg?rev=238874&r1=238873&r2=238874&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/lit.local.cfg (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/Posix/lit.local.cfg Tue Jun 2 16:59:04 2015
@@ -5,5 +5,5 @@ def getRoot(config):
root = getRoot(config)
-if root.host_os in ['Windows']:
+if root.host_os in ['Windows', 'Darwin']:
config.unsupported = True
More information about the llvm-commits
mailing list