[clang] [clang][FreeBSD] Re-enable the crush-recovery test on FreeBSD (PR #192608)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 17 00:59:30 PDT 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: aokblast
<details>
<summary>Changes</summary>
All of the tests work now on FreeBSD, so we re-enable the feature again on FreeBSD.
---
Full diff: https://github.com/llvm/llvm-project/pull/192608.diff
1 Files Affected:
- (modified) clang/test/lit.cfg.py (+1-3)
``````````diff
diff --git a/clang/test/lit.cfg.py b/clang/test/lit.cfg.py
index 3b0b3092d424e..fedd3151b75ad 100644
--- a/clang/test/lit.cfg.py
+++ b/clang/test/lit.cfg.py
@@ -315,9 +315,7 @@ def have_host_clang_repl_cuda():
"default-cxx-stdlib={}".format(config.clang_default_cxx_stdlib)
)
-# 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")
+config.available_features.add("crash-recovery")
# ANSI escape sequences in non-dumb terminal
if platform.system() not in ["Windows"]:
``````````
</details>
https://github.com/llvm/llvm-project/pull/192608
More information about the cfe-commits
mailing list