From 3df2824c59541d90caa61f8513cdcf2e4f94c0db Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Fri, 26 Aug 2011 22:46:31 +0000 Subject: [PATCH] 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 llvm-svn: 138672 --- clang/test/lit.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/clang/test/lit.cfg b/clang/test/lit.cfg index 850c0cf7ea81..8062aa72c1f1 100644 --- a/clang/test/lit.cfg +++ b/clang/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() != '': -- GitLab