[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:58:54 PDT 2026


https://github.com/aokblast created https://github.com/llvm/llvm-project/pull/192608

All of the tests work now on FreeBSD, so we re-enable the feature again on FreeBSD.

>From f9934ee5634fc564ca19742859e0961da7cec1dc Mon Sep 17 00:00:00 2001
From: ShengYi Hung <aokblast at FreeBSD.org>
Date: Fri, 17 Apr 2026 15:56:51 +0800
Subject: [PATCH] [clang][FreeBSD] Re-enable the crush-recovery test on FreeBSD

All of the tests work now on FreeBSD, so we re-enable the feature again
on FreeBSD.
---
 clang/test/lit.cfg.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

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"]:



More information about the cfe-commits mailing list