diff options
author | Zachary Turner <zturner@google.com> | 2015-10-27 22:33:47 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-10-27 22:33:47 +0000 |
commit | af383ff70c30b422d919210cfd7e6a61e62405b9 (patch) | |
tree | defb02a15e66e52301f03dc61ac9c9e8a3f5ed1f /lldb/packages/Python/lldbsuite | |
parent | 4c1f1c33b16b3b7236444661a6bd48933cf7c2dd (diff) | |
download | bcm5719-llvm-af383ff70c30b422d919210cfd7e6a61e62405b9.tar.gz bcm5719-llvm-af383ff70c30b422d919210cfd7e6a61e62405b9.zip |
Preparation for turning lldbsuite into a Python package.
The idea behind this patch is to expose the meat of
LLDB's Python infrastructure (test suite, scripts, etc)
as a single package. This makes reusability and code
sharing among sub-packages easy.
Differential Revision: http://reviews.llvm.org/D14131
llvm-svn: 251460
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-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.
|