[Lldb-commits] [lldb] [lldb] Check for abstract methods implementation in Scripted Plugin Objects (PR #71260)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Sat Nov 4 20:03:01 PDT 2023


================
@@ -0,0 +1,19 @@
+import os
+
+
+class MissingMethodsScriptedProcess:
+    def __init__(self, exe_ctx, args):
+        pass
+
+
+def __lldb_init_module(debugger, dict):
+    if not "SKIP_SCRIPTED_PROCESS_LAUNCH" in os.environ:
----------------
medismailben wrote:

Not really, this is how we've been doing it for all the ScriptedProcess tests.

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


More information about the lldb-commits mailing list