summaryrefslogtreecommitdiffstats
path: root/lldb/test/expression_command
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/expression_command')
-rw-r--r--lldb/test/expression_command/call-function/TestCallStdStringFunction.py2
-rw-r--r--lldb/test/expression_command/call-function/TestCallStopAndContinue.py2
-rw-r--r--lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py2
-rw-r--r--lldb/test/expression_command/call-restarts/TestCallThatRestarts.py2
-rw-r--r--lldb/test/expression_command/call-throws/TestCallThatThrows.py2
-rw-r--r--lldb/test/expression_command/char/TestExprsChar.py2
-rw-r--r--lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py2
-rw-r--r--lldb/test/expression_command/formatters/TestFormatters.py2
-rw-r--r--lldb/test/expression_command/issue_11588/Test11588.py2
-rw-r--r--lldb/test/expression_command/options/TestExprOptions.py2
-rw-r--r--lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py2
-rw-r--r--lldb/test/expression_command/persistent_ptr_update/TestPersistentPtrUpdate.py2
-rw-r--r--lldb/test/expression_command/persistent_types/TestNestedPersistentTypes.py2
-rw-r--r--lldb/test/expression_command/persistent_types/TestPersistentTypes.py2
-rw-r--r--lldb/test/expression_command/persistent_variables/TestPersistentVariables.py2
-rw-r--r--lldb/test/expression_command/po_verbosity/TestPoVerbosity.py2
-rw-r--r--lldb/test/expression_command/radar_8638051/Test8638051.py2
-rw-r--r--lldb/test/expression_command/radar_9531204/TestPrintfAfterUp.py2
-rw-r--r--lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py2
-rw-r--r--lldb/test/expression_command/test/TestExprs.py2
-rw-r--r--lldb/test/expression_command/test/TestExprs2.py2
-rw-r--r--lldb/test/expression_command/timeout/TestCallWithTimeout.py2
-rw-r--r--lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py2
23 files changed, 23 insertions, 23 deletions
diff --git a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
index ef04bdb59d6..11caf627744 100644
--- a/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
+++ b/lldb/test/expression_command/call-function/TestCallStdStringFunction.py
@@ -4,7 +4,7 @@ Test calling std::String member functions.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/call-function/TestCallStopAndContinue.py b/lldb/test/expression_command/call-function/TestCallStopAndContinue.py
index cc66dd0c6ea..1cd2d83373f 100644
--- a/lldb/test/expression_command/call-function/TestCallStopAndContinue.py
+++ b/lldb/test/expression_command/call-function/TestCallStopAndContinue.py
@@ -4,7 +4,7 @@ Test calling a function, stopping in the call, continue and gather the result on
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py b/lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py
index f851779c58d..3b101285750 100644
--- a/lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py
+++ b/lldb/test/expression_command/call-function/TestCallUserDefinedFunction.py
@@ -9,7 +9,7 @@ Note:
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/call-restarts/TestCallThatRestarts.py b/lldb/test/expression_command/call-restarts/TestCallThatRestarts.py
index e3d368c97cd..38f0ab73db4 100644
--- a/lldb/test/expression_command/call-restarts/TestCallThatRestarts.py
+++ b/lldb/test/expression_command/call-restarts/TestCallThatRestarts.py
@@ -4,7 +4,7 @@ Test calling a function that hits a signal set to auto-restart, make sure the ca
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/call-throws/TestCallThatThrows.py b/lldb/test/expression_command/call-throws/TestCallThatThrows.py
index 85774cdc65f..874c9f7da07 100644
--- a/lldb/test/expression_command/call-throws/TestCallThatThrows.py
+++ b/lldb/test/expression_command/call-throws/TestCallThatThrows.py
@@ -4,7 +4,7 @@ Test calling a function that throws an ObjC exception, make sure that it doesn't
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/char/TestExprsChar.py b/lldb/test/expression_command/char/TestExprsChar.py
index 0e6478ac238..cb57fdb1b7b 100644
--- a/lldb/test/expression_command/char/TestExprsChar.py
+++ b/lldb/test/expression_command/char/TestExprsChar.py
@@ -1,6 +1,6 @@
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py b/lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
index 83c98affdd0..f115f13f773 100644
--- a/lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
+++ b/lldb/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
@@ -2,7 +2,7 @@
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os
import lldb
diff --git a/lldb/test/expression_command/formatters/TestFormatters.py b/lldb/test/expression_command/formatters/TestFormatters.py
index c8bb2847a48..6fb6cd8bcd7 100644
--- a/lldb/test/expression_command/formatters/TestFormatters.py
+++ b/lldb/test/expression_command/formatters/TestFormatters.py
@@ -4,7 +4,7 @@ Test using LLDB data formatters with frozen objects coming from the expression p
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/issue_11588/Test11588.py b/lldb/test/expression_command/issue_11588/Test11588.py
index 53b7fc94faf..5941cb50946 100644
--- a/lldb/test/expression_command/issue_11588/Test11588.py
+++ b/lldb/test/expression_command/issue_11588/Test11588.py
@@ -6,7 +6,7 @@ expected in a SyntheticChildrenProvider
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os, time
import lldb
diff --git a/lldb/test/expression_command/options/TestExprOptions.py b/lldb/test/expression_command/options/TestExprOptions.py
index 846f676eb64..2c0eb6551ea 100644
--- a/lldb/test/expression_command/options/TestExprOptions.py
+++ b/lldb/test/expression_command/options/TestExprOptions.py
@@ -9,7 +9,7 @@ o test_expr_options:
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os, time
import lldb
diff --git a/lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py b/lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py
index b11ea8a6ced..e959450a5c7 100644
--- a/lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py
+++ b/lldb/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py
@@ -4,7 +4,7 @@ Test that we can p *objcObject
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/persistent_ptr_update/TestPersistentPtrUpdate.py b/lldb/test/expression_command/persistent_ptr_update/TestPersistentPtrUpdate.py
index 4c10e2a946b..8d3e31d1632 100644
--- a/lldb/test/expression_command/persistent_ptr_update/TestPersistentPtrUpdate.py
+++ b/lldb/test/expression_command/persistent_ptr_update/TestPersistentPtrUpdate.py
@@ -4,7 +4,7 @@ Test that we can have persistent pointer variables
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/persistent_types/TestNestedPersistentTypes.py b/lldb/test/expression_command/persistent_types/TestNestedPersistentTypes.py
index 7e474c889ef..fdc8b68bddd 100644
--- a/lldb/test/expression_command/persistent_types/TestNestedPersistentTypes.py
+++ b/lldb/test/expression_command/persistent_types/TestNestedPersistentTypes.py
@@ -4,7 +4,7 @@ Test that nested persistent types work.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os, time
import lldb
diff --git a/lldb/test/expression_command/persistent_types/TestPersistentTypes.py b/lldb/test/expression_command/persistent_types/TestPersistentTypes.py
index 3ed03843184..48ee99fe780 100644
--- a/lldb/test/expression_command/persistent_types/TestPersistentTypes.py
+++ b/lldb/test/expression_command/persistent_types/TestPersistentTypes.py
@@ -4,7 +4,7 @@ Test that lldb persistent types works correctly.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os, time
import lldb
diff --git a/lldb/test/expression_command/persistent_variables/TestPersistentVariables.py b/lldb/test/expression_command/persistent_variables/TestPersistentVariables.py
index c6f270f7b62..6790014f5e6 100644
--- a/lldb/test/expression_command/persistent_variables/TestPersistentVariables.py
+++ b/lldb/test/expression_command/persistent_variables/TestPersistentVariables.py
@@ -4,7 +4,7 @@ Test that lldb persistent variables works correctly.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os, time
import lldb
diff --git a/lldb/test/expression_command/po_verbosity/TestPoVerbosity.py b/lldb/test/expression_command/po_verbosity/TestPoVerbosity.py
index 9603bb536cb..b50cc262586 100644
--- a/lldb/test/expression_command/po_verbosity/TestPoVerbosity.py
+++ b/lldb/test/expression_command/po_verbosity/TestPoVerbosity.py
@@ -4,7 +4,7 @@ Test that the po command acts correctly.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/radar_8638051/Test8638051.py b/lldb/test/expression_command/radar_8638051/Test8638051.py
index a8ba0216bb6..3b61a468848 100644
--- a/lldb/test/expression_command/radar_8638051/Test8638051.py
+++ b/lldb/test/expression_command/radar_8638051/Test8638051.py
@@ -4,7 +4,7 @@ Test the robustness of lldb expression parser.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os, time
import lldb
diff --git a/lldb/test/expression_command/radar_9531204/TestPrintfAfterUp.py b/lldb/test/expression_command/radar_9531204/TestPrintfAfterUp.py
index 41e3cf8299f..e7821a68f29 100644
--- a/lldb/test/expression_command/radar_9531204/TestPrintfAfterUp.py
+++ b/lldb/test/expression_command/radar_9531204/TestPrintfAfterUp.py
@@ -4,7 +4,7 @@ The evaluating printf(...) after break stop and then up a stack frame.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os, time
import lldb
diff --git a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py
index 8538bb3da5d..7d7c8ed046c 100644
--- a/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py
+++ b/lldb/test/expression_command/radar_9673664/TestExprHelpExamples.py
@@ -4,7 +4,7 @@ Test example snippets from the lldb 'help expression' output.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os, time
import lldb
diff --git a/lldb/test/expression_command/test/TestExprs.py b/lldb/test/expression_command/test/TestExprs.py
index 7b6d032aba5..70d36896dcd 100644
--- a/lldb/test/expression_command/test/TestExprs.py
+++ b/lldb/test/expression_command/test/TestExprs.py
@@ -13,7 +13,7 @@ o test_expr_commands_can_handle_quotes:
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import unittest2
diff --git a/lldb/test/expression_command/test/TestExprs2.py b/lldb/test/expression_command/test/TestExprs2.py
index b835c086ab8..672521dd1d1 100644
--- a/lldb/test/expression_command/test/TestExprs2.py
+++ b/lldb/test/expression_command/test/TestExprs2.py
@@ -4,7 +4,7 @@ Test some more expression commands.
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import os
import lldb
diff --git a/lldb/test/expression_command/timeout/TestCallWithTimeout.py b/lldb/test/expression_command/timeout/TestCallWithTimeout.py
index 59a1be6f7e7..6e3e8879073 100644
--- a/lldb/test/expression_command/timeout/TestCallWithTimeout.py
+++ b/lldb/test/expression_command/timeout/TestCallWithTimeout.py
@@ -4,7 +4,7 @@ Test calling a function that waits a while, and make sure the timeout option to
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
import lldbutil
diff --git a/lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py b/lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
index 6edf8be453f..7e67b334e4d 100644
--- a/lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
+++ b/lldb/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
@@ -6,7 +6,7 @@ The expression parser's type search only looks in the current compilation unit f
from __future__ import print_function
-import lldb_shared
+import use_lldb_suite
import lldb
from lldbtest import *
OpenPOWER on IntegriCloud