[Lldb-commits] [lldb] [lldb] Consolidating platform support checks in tests. (PR #184656)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 10 10:32:37 PDT 2026
================
@@ -65,12 +67,26 @@ class TestFile {
std::string Buffer;
};
+/// Check if the debugger supports the given platform.
+bool DebuggerSupportsPlatform(lldb::SBDebugger &debugger,
+ llvm::StringRef platform);
+
+#define SKIP_UNLESS_PLATFORM_SUPPORTED(debugger, platform) \
----------------
ashgti wrote:
Done.
https://github.com/llvm/llvm-project/pull/184656
More information about the lldb-commits
mailing list