https://github.com/mchoo7 updated https://github.com/llvm/llvm-project/pull/182363
>From 2d13a99a3f799e5b30bd752da6418a5261db0428 Mon Sep 17 00:00:00 2001 From: Minsoo Choo <[email protected]> Date: Thu, 19 Feb 2026 15:19:29 -0500 Subject: [PATCH] [lldb][tests/FreeBSDKernel] Skip tests on non-FreeBSD hosts Signed-off-by: Minsoo Choo <[email protected]> --- .../postmortem/FreeBSDKernel/TestFreeBSDKernelVMCore.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lldb/test/API/functionalities/postmortem/FreeBSDKernel/TestFreeBSDKernelVMCore.py b/lldb/test/API/functionalities/postmortem/FreeBSDKernel/TestFreeBSDKernelVMCore.py index 86ba661296a7f..96ba4936bab6f 100644 --- a/lldb/test/API/functionalities/postmortem/FreeBSDKernel/TestFreeBSDKernelVMCore.py +++ b/lldb/test/API/functionalities/postmortem/FreeBSDKernel/TestFreeBSDKernelVMCore.py @@ -7,8 +7,9 @@ from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil +import lldb -@skipIfFBSDVMCoreSupportMissing +@skipUnlessPlatform(["freebsd"]) class FreeBSDKernelVMCoreTestCase(TestBase): NO_DEBUG_INFO_TESTCASE = True maxDiff = None _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
