[clang-tools-extra] r352031 - [extra] unit tests enable crash-recovery cases on FreeBSD
David Carlier via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 23 23:58:42 PST 2019
Author: devnexen
Date: Wed Jan 23 23:58:42 2019
New Revision: 352031
URL: http://llvm.org/viewvc/llvm-project?rev=352031&view=rev
Log:
[extra] unit tests enable crash-recovery cases on FreeBSD
Seems the previous statement does not hold up anymore.
Reviewers: steveire
Reviewed By: steveire
Differential Revision: https://reviews.llvm.org/D57102
Modified:
clang-tools-extra/trunk/test/lit.cfg
Modified: clang-tools-extra/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/lit.cfg?rev=352031&r1=352030&r2=352031&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/lit.cfg (original)
+++ clang-tools-extra/trunk/test/lit.cfg Wed Jan 23 23:58:42 2019
@@ -99,11 +99,9 @@ config.environment['LD_LIBRARY_PATH'] =
if lit_config.useValgrind:
config.target_triple += '-vg'
+config.available_features.add('crash-recovery')
# Set available features we allow tests to conditionalize on.
#
-# 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 execute_external:
More information about the cfe-commits
mailing list