diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/function_symbol')
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py | 7 | ||||
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py | 5 |
2 files changed, 7 insertions, 5 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py b/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py index a967dc85296..941558d8400 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py @@ -8,8 +8,9 @@ import use_lldb_suite import os, time import re -import lldb, lldbutil -from lldbtest import * +import lldb +import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.lldbtest import * class DisasmAPITestCase(TestBase): @@ -103,7 +104,7 @@ class DisasmAPITestCase(TestBase): self.assertTrue(sa1 and sa2 and sa1 == sa2, "The two starting addresses should be the same") - from lldbutil import get_description + from lldbsuite.test.lldbutil import get_description desc1 = get_description(sa1) desc2 = get_description(sa2) self.assertTrue(desc1 and desc2 and desc1 == desc2, diff --git a/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py b/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py index 1b49ebc2f15..c47ce32d689 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py @@ -8,8 +8,9 @@ import use_lldb_suite import os, time import re -import lldb, lldbutil -from lldbtest import * +import lldb +import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.lldbtest import * class SymbolAPITestCase(TestBase): |

