From: NAKAMURA Takumi Date: Tue, 27 Nov 2012 05:25:41 +0000 (+0000) Subject: clang/test/lit.cfg: Disable dev-fd-fs on cygwin for now. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eb360a0d4f5b22bb6e5a90b3a47a95ff797aea88;p=platform%2Fupstream%2Fllvm.git clang/test/lit.cfg: Disable dev-fd-fs on cygwin for now. open("/dev/fd/1-foobar") fails with EEXIST on cygwin. llvm-svn: 168676 --- diff --git a/clang/test/lit.cfg b/clang/test/lit.cfg index 1180f72..1a4fcbd 100644 --- a/clang/test/lit.cfg +++ b/clang/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