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

Andrew Trick atrick at apple.com
Fri Aug 26 15:46:31 PDT 2011


Author: atrick
Date: Fri Aug 26 17:46:31 2011
New Revision: 138672

URL: http://llvm.org/viewvc/llvm-project?rev=138672&view=rev
Log:
FreeBSD (apparently) does not support crash-recovery tests.

These tests have been failing since the beginning of buildbot time:
crash-recovery-code-complete.c
crash-recovery-reparse.c
crash-recovery.c

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=138672&r1=138671&r2=138672&view=diff
==============================================================================
--- cfe/trunk/test/lit.cfg (original)
+++ cfe/trunk/test/lit.cfg Fri Aug 26 17:46:31 2011
@@ -165,7 +165,10 @@
 ###
 
 # Set available features we allow tests to conditionalize on.
-config.available_features.add('crash-recovery')
+#
+# As of 2011.08, crash-recovery tests still do not pass on FreeBSD.
+if platform.system() not in ['FreeBSD']:
+    config.available_features.add('crash-recovery')
 
 # Shell execution
 if platform.system() not in ['Windows'] or lit.getBashPath() != '':





More information about the cfe-commits mailing list