diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbplatformutil.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbplatformutil.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py b/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py index e23a0ef0efc..af5af08a86d 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py +++ b/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py @@ -1,6 +1,14 @@ """ This module contains functions used by the test cases to hide the architecture and/or the platform dependent nature of the tests. """ +from __future__ import absolute_import + +# System modules + +# Third-party modules + +# LLDB modules + def check_first_register_readable(test_case): if test_case.getArchitecture() in ['x86_64', 'i386']: test_case.expect("register read eax", substrs = ['eax = 0x']) |