diff options
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/__init__.py | 20 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/__init__.py | 1 |
2 files changed, 21 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/__init__.py b/lldb/packages/Python/lldbsuite/__init__.py new file mode 100644 index 00000000000..3258a17aadc --- /dev/null +++ b/lldb/packages/Python/lldbsuite/__init__.py @@ -0,0 +1,20 @@ +# Module level initialization for the `lldbsuite` module.
+
+import inspect
+import os
+import sys
+
+def find_lldb_root():
+ lldb_root = os.path.dirname(inspect.getfile(inspect.currentframe()))
+ while True:
+ lldb_root = os.path.dirname(lldb_root)
+ if lldb_root is None:
+ return None
+
+ test_path = os.path.join(lldb_root, "lldb.root")
+ if os.path.isfile(test_path):
+ return lldb_root
+ return None
+
+# lldbsuite.lldb_root refers to the root of the git/svn source checkout
+lldb_root = find_lldb_root()
diff --git a/lldb/packages/Python/lldbsuite/test/__init__.py b/lldb/packages/Python/lldbsuite/test/__init__.py new file mode 100644 index 00000000000..5ae1a7ef632 --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/__init__.py @@ -0,0 +1 @@ +# Module level initialization for the `lldbsuite.test` module.
|