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/test | |
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/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
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.
|