diff options
author | Tim Northover <tnorthover@apple.com> | 2015-06-02 21:59:04 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2015-06-02 21:59:04 +0000 |
commit | f554276c7f8e8594304b4bf9953a03366bc67895 (patch) | |
tree | 4133d29714daedbb7f6bed522d2dc696ed33b76a /test/sanitizer_common | |
parent | 433e7850d93d11766f9524158af64b65f0cf11dd (diff) | |
download | compiler-rt-f554276c7f8e8594304b4bf9953a03366bc67895.tar.gz |
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.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@238874 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/sanitizer_common')
-rw-r--r-- | test/sanitizer_common/TestCases/Posix/lit.local.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sanitizer_common/TestCases/Posix/lit.local.cfg b/test/sanitizer_common/TestCases/Posix/lit.local.cfg index 60a946082..a6d96d305 100644 --- a/test/sanitizer_common/TestCases/Posix/lit.local.cfg +++ b/test/sanitizer_common/TestCases/Posix/lit.local.cfg @@ -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 |