[Lldb-commits] [lldb] [lldb] Consolidating platform support checks in tests. (PR #184656)

Ebuka Ezike via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 5 08:35:28 PST 2026


================
@@ -59,7 +59,10 @@ class VariablesTest : public ::testing::Test {
   std::optional<llvm::sys::fs::TempFile> core;
   std::optional<llvm::sys::fs::TempFile> binary;
 
-  void CreateDebugger() { debugger = lldb::SBDebugger::Create(); }
+  void CreateDebugger() {
+    debugger = lldb::SBDebugger::Create();
+    SKIP_UNLESS_PLATFORM_SUPPORTED(debugger, "X86");
----------------
da-viper wrote:

Yes It is.

https://github.com/llvm/llvm-project/pull/184656


More information about the lldb-commits mailing list