forked from OSchip/llvm-project
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
This commit is contained in:
parent
6fdc1221c7
commit
eb360a0d4f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue