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

NAKAMURA Takumi geek4civic at gmail.com
Thu Nov 15 19:28:51 PST 2012


Author: chapuni
Date: Thu Nov 15 21:28:51 2012
New Revision: 168132

URL: http://llvm.org/viewvc/llvm-project?rev=168132&view=rev
Log:
clang/test/lit.cfg: Suppress the feature 'dev-fd-fs' for now.

None of my buildhost (centos6 x86-64 and cygwin) is passing. Investigating.

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=168132&r1=168131&r2=168132&view=diff
==============================================================================
--- cfe/trunk/test/lit.cfg (original)
+++ cfe/trunk/test/lit.cfg Thu Nov 15 21:28:51 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 False and os.path.exists("/dev/fd/0"):
     config.available_features.add('dev-fd-fs')
 
 # [PR8833] LLP64-incompatible tests





More information about the cfe-commits mailing list