diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-27 05:25:41 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-27 05:25:41 +0000 |
commit | 93308b9aa4c254b0a82a79d1bc0c78b83b9fed50 (patch) | |
tree | a8ba0dfdf5dfdf4044e60d75fdfde8b3ac549dc2 | |
parent | 55f6c336b132b4b9bbbda070bb0f9ee8b03a6ed3 (diff) | |
download | clang-93308b9aa4c254b0a82a79d1bc0c78b83b9fed50.tar.gz |
clang/test/lit.cfg: Disable dev-fd-fs on cygwin for now.
open("/dev/fd/1-foobar") fails with EEXIST on cygwin.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168676 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 1180f72f5b..1a4fcbdec7 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -238,7 +238,7 @@ if is_filesystem_case_insensitive(): config.available_features.add('case-insensitive-filesystem') # Tests that require the /dev/fd filesystem. -if os.path.exists("/dev/fd/0"): +if os.path.exists("/dev/fd/0") and sys.platform not in ['cygwin']: config.available_features.add('dev-fd-fs') # [PR8833] LLP64-incompatible tests |