aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2011-08-26 22:46:31 +0000
committerAndrew Trick <atrick@apple.com>2011-08-26 22:46:31 +0000
commit6da28e24c98cda2b741c43cd9c1f8093e85fee5c (patch)
tree734bdc59ac79a32549b761c6645bd8cd3d127d3a
parent56773de654224ef1504ae67a3aa87ffed189e6fe (diff)
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 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138672 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/lit.cfg5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 850c0cf7ea..8062aa72c1 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -165,7 +165,10 @@ config.substitutions.append(
###
# 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() != '':