diff options
-rw-r--r-- | test/lit.cfg | 5 |
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() != '': |