[Lldb-commits] [lldb] [lldb/Plugins] Introduce Scripted Platform Plugin (PR #99814)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 23 07:30:45 PDT 2024
================
@@ -0,0 +1,108 @@
+"""
+Test python scripted platform in lldb
+"""
+
+import os, shutil
+
+import lldb
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+from lldbsuite.test import lldbutil
+from lldbsuite.test import lldbtest
+
+
+class ScriptedPlatformTestCase(TestBase):
+ NO_DEBUG_INFO_TESTCASE = True
+
+ @skipUnlessDarwin
----------------
labath wrote:
What's the reason this doesn't work elsewhere?
https://github.com/llvm/llvm-project/pull/99814
More information about the lldb-commits
mailing list