[cfe-commits] r168676 - /cfe/trunk/test/lit.cfg

NAKAMURA Takumi geek4civic at gmail.com
Mon Nov 26 21:25:41 PST 2012


Author: chapuni
Date: Mon Nov 26 23:25:41 2012
New Revision: 168676

URL: http://llvm.org/viewvc/llvm-project?rev=168676&view=rev
Log:
clang/test/lit.cfg: Disable dev-fd-fs on cygwin for now.

open("/dev/fd/1-foobar") fails with EEXIST on cygwin.

Modified:
    cfe/trunk/test/lit.cfg

Modified: cfe/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.cfg?rev=168676&r1=168675&r2=168676&view=diff
==============================================================================
--- cfe/trunk/test/lit.cfg (original)
+++ cfe/trunk/test/lit.cfg Mon Nov 26 23:25:41 2012
@@ -238,7 +238,7 @@
     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





More information about the cfe-commits mailing list