diff options
author | Zachary Turner <zturner@google.com> | 2015-10-27 20:12:05 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-10-27 20:12:05 +0000 |
commit | 0a0490b1520e96b728448b8c43ca873fcaa809dc (patch) | |
tree | d86351542362fcd3187d40fdfb0ccb939ac2f99a /lldb/test/python_api | |
parent | 235acde953856a52b692cecf2c0484f2c30fdf43 (diff) | |
download | bcm5719-llvm-0a0490b1520e96b728448b8c43ca873fcaa809dc.tar.gz bcm5719-llvm-0a0490b1520e96b728448b8c43ca873fcaa809dc.zip |
Rename `lldb_shared` to `use_lldb_suite`.
llvm-svn: 251444
Diffstat (limited to 'lldb/test/python_api')
41 files changed, 41 insertions, 41 deletions
diff --git a/lldb/test/python_api/breakpoint/TestBreakpointAPI.py b/lldb/test/python_api/breakpoint/TestBreakpointAPI.py index 4e984cc266c..c70b485a93a 100644 --- a/lldb/test/python_api/breakpoint/TestBreakpointAPI.py +++ b/lldb/test/python_api/breakpoint/TestBreakpointAPI.py @@ -4,7 +4,7 @@ Test SBBreakpoint APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/class_members/TestSBTypeClassMembers.py b/lldb/test/python_api/class_members/TestSBTypeClassMembers.py index 6366a791f66..00b2bcfe0db 100644 --- a/lldb/test/python_api/class_members/TestSBTypeClassMembers.py +++ b/lldb/test/python_api/class_members/TestSBTypeClassMembers.py @@ -4,7 +4,7 @@ Test SBType APIs to fetch member function types. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py b/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py index 0e6e053dcad..067d3875cea 100644 --- a/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py +++ b/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py @@ -13,7 +13,7 @@ after default construction. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py b/lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py index e5dcc499dfa..131146b83b5 100644 --- a/lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py +++ b/lldb/test/python_api/disassemble-raw-data/TestDisassembleRawData.py @@ -4,7 +4,7 @@ Use lldb Python API to disassemble raw machine code bytes from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py b/lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py index 25f43e2a4f9..310d308c70f 100644 --- a/lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py +++ b/lldb/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py @@ -4,7 +4,7 @@ Use lldb Python API to disassemble raw machine code bytes from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/event/TestEvents.py b/lldb/test/python_api/event/TestEvents.py index 773c1893f47..f63ac134aab 100644 --- a/lldb/test/python_api/event/TestEvents.py +++ b/lldb/test/python_api/event/TestEvents.py @@ -4,7 +4,7 @@ Test lldb Python event APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/findvalue_duplist/TestSBFrameFindValue.py b/lldb/test/python_api/findvalue_duplist/TestSBFrameFindValue.py index fbe43bc77ca..0bc525753fd 100644 --- a/lldb/test/python_api/findvalue_duplist/TestSBFrameFindValue.py +++ b/lldb/test/python_api/findvalue_duplist/TestSBFrameFindValue.py @@ -2,7 +2,7 @@ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, sys, time import lldb diff --git a/lldb/test/python_api/formatters/TestFormattersSBAPI.py b/lldb/test/python_api/formatters/TestFormattersSBAPI.py index 807848fff1b..9c838503802 100644 --- a/lldb/test/python_api/formatters/TestFormattersSBAPI.py +++ b/lldb/test/python_api/formatters/TestFormattersSBAPI.py @@ -2,7 +2,7 @@ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, sys, time import lldb diff --git a/lldb/test/python_api/frame/TestFrames.py b/lldb/test/python_api/frame/TestFrames.py index 98f5062e28c..8cc89f67724 100644 --- a/lldb/test/python_api/frame/TestFrames.py +++ b/lldb/test/python_api/frame/TestFrames.py @@ -5,7 +5,7 @@ And other SBFrame API tests. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/frame/inlines/TestInlinedFrame.py b/lldb/test/python_api/frame/inlines/TestInlinedFrame.py index 63288a8e479..314cc72cf28 100644 --- a/lldb/test/python_api/frame/inlines/TestInlinedFrame.py +++ b/lldb/test/python_api/frame/inlines/TestInlinedFrame.py @@ -4,7 +4,7 @@ Testlldb Python SBFrame APIs IsInlined() and GetFunctionName(). from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/function_symbol/TestDisasmAPI.py b/lldb/test/python_api/function_symbol/TestDisasmAPI.py index d66a66f1b8d..a967dc85296 100644 --- a/lldb/test/python_api/function_symbol/TestDisasmAPI.py +++ b/lldb/test/python_api/function_symbol/TestDisasmAPI.py @@ -4,7 +4,7 @@ Test retrieval of SBAddress from function/symbol, disassembly, and SBAddress API from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/function_symbol/TestSymbolAPI.py b/lldb/test/python_api/function_symbol/TestSymbolAPI.py index 1488e520db6..1b49ebc2f15 100644 --- a/lldb/test/python_api/function_symbol/TestSymbolAPI.py +++ b/lldb/test/python_api/function_symbol/TestSymbolAPI.py @@ -4,7 +4,7 @@ Test newly added SBSymbol and SBAddress APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/hello_world/TestHelloWorld.py b/lldb/test/python_api/hello_world/TestHelloWorld.py index 430d4fbfa4a..263d41c22d5 100644 --- a/lldb/test/python_api/hello_world/TestHelloWorld.py +++ b/lldb/test/python_api/hello_world/TestHelloWorld.py @@ -2,7 +2,7 @@ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, sys, time import lldb diff --git a/lldb/test/python_api/interpreter/TestCommandInterpreterAPI.py b/lldb/test/python_api/interpreter/TestCommandInterpreterAPI.py index 3755bfbd33f..e5725674f86 100644 --- a/lldb/test/python_api/interpreter/TestCommandInterpreterAPI.py +++ b/lldb/test/python_api/interpreter/TestCommandInterpreterAPI.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/python_api/lldbutil/frame/TestFrameUtils.py b/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py index a9f735eedff..831c68a2f77 100644 --- a/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py +++ b/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py @@ -4,7 +4,7 @@ Test utility functions for the frame object. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os import lldb diff --git a/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py b/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py index 5c4db483431..d8842546268 100644 --- a/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py +++ b/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py @@ -4,7 +4,7 @@ Test the iteration protocol for some lldb container objects. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py b/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py index bb098b9f690..6c2dd4e83d2 100644 --- a/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py +++ b/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py @@ -4,7 +4,7 @@ Test the iteration protocol for frame registers. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py b/lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py index f8a6533fab4..0632779b12d 100644 --- a/lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py +++ b/lldb/test/python_api/lldbutil/process/TestPrintStackTraces.py @@ -4,7 +4,7 @@ Test SBprocess and SBThread APIs with printing of the stack traces using lldbuti from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/module_section/TestModuleAndSection.py b/lldb/test/python_api/module_section/TestModuleAndSection.py index d12f1ae6ba3..5af54537b26 100644 --- a/lldb/test/python_api/module_section/TestModuleAndSection.py +++ b/lldb/test/python_api/module_section/TestModuleAndSection.py @@ -4,7 +4,7 @@ Test some SBModule and SBSection APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/objc_type/TestObjCType.py b/lldb/test/python_api/objc_type/TestObjCType.py index 1255d6fb63f..f267c4b0eee 100644 --- a/lldb/test/python_api/objc_type/TestObjCType.py +++ b/lldb/test/python_api/objc_type/TestObjCType.py @@ -4,7 +4,7 @@ Test SBType for ObjC classes. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/process/TestProcessAPI.py b/lldb/test/python_api/process/TestProcessAPI.py index 0f0d3242010..ad007d9e2f0 100644 --- a/lldb/test/python_api/process/TestProcessAPI.py +++ b/lldb/test/python_api/process/TestProcessAPI.py @@ -4,7 +4,7 @@ Test SBProcess APIs, including ReadMemory(), WriteMemory(), and others. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/python_api/process/io/TestProcessIO.py b/lldb/test/python_api/process/io/TestProcessIO.py index 2dc3f40ac9b..def9f5fcd51 100644 --- a/lldb/test/python_api/process/io/TestProcessIO.py +++ b/lldb/test/python_api/process/io/TestProcessIO.py @@ -2,7 +2,7 @@ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, sys, time import lldb diff --git a/lldb/test/python_api/rdar-12481949/Test-rdar-12481949.py b/lldb/test/python_api/rdar-12481949/Test-rdar-12481949.py index 5122a148dc5..a2a2274a22e 100644 --- a/lldb/test/python_api/rdar-12481949/Test-rdar-12481949.py +++ b/lldb/test/python_api/rdar-12481949/Test-rdar-12481949.py @@ -4,7 +4,7 @@ Check that SBValue.GetValueAsSigned() does the right thing for a 32-bit -1. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/python_api/sbdata/TestSBData.py b/lldb/test/python_api/sbdata/TestSBData.py index 304e8abdbd4..536101b9af9 100644 --- a/lldb/test/python_api/sbdata/TestSBData.py +++ b/lldb/test/python_api/sbdata/TestSBData.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/python_api/sbvalue_persist/TestSBValuePersist.py b/lldb/test/python_api/sbvalue_persist/TestSBValuePersist.py index 39c055b854f..7e216c034c4 100644 --- a/lldb/test/python_api/sbvalue_persist/TestSBValuePersist.py +++ b/lldb/test/python_api/sbvalue_persist/TestSBValuePersist.py @@ -2,7 +2,7 @@ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, sys, time import lldb diff --git a/lldb/test/python_api/section/TestSectionAPI.py b/lldb/test/python_api/section/TestSectionAPI.py index 4575f90747c..26002fb3400 100755 --- a/lldb/test/python_api/section/TestSectionAPI.py +++ b/lldb/test/python_api/section/TestSectionAPI.py @@ -4,7 +4,7 @@ Test SBSection APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite from lldbtest import * diff --git a/lldb/test/python_api/signals/TestSignalsAPI.py b/lldb/test/python_api/signals/TestSignalsAPI.py index 4dc8e651e27..3ee42de7870 100644 --- a/lldb/test/python_api/signals/TestSignalsAPI.py +++ b/lldb/test/python_api/signals/TestSignalsAPI.py @@ -4,7 +4,7 @@ Test SBProcess APIs, including ReadMemory(), WriteMemory(), and others. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/python_api/symbol-context/TestSymbolContext.py b/lldb/test/python_api/symbol-context/TestSymbolContext.py index b34960ac4f9..4fb3a8ea6aa 100644 --- a/lldb/test/python_api/symbol-context/TestSymbolContext.py +++ b/lldb/test/python_api/symbol-context/TestSymbolContext.py @@ -4,7 +4,7 @@ Test SBSymbolContext APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/target/TestTargetAPI.py b/lldb/test/python_api/target/TestTargetAPI.py index 8fbcc086f66..d3367aa6b24 100644 --- a/lldb/test/python_api/target/TestTargetAPI.py +++ b/lldb/test/python_api/target/TestTargetAPI.py @@ -4,7 +4,7 @@ Test SBTarget APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import unittest2 import os, time diff --git a/lldb/test/python_api/thread/TestThreadAPI.py b/lldb/test/python_api/thread/TestThreadAPI.py index e76bb658f38..82984205e63 100644 --- a/lldb/test/python_api/thread/TestThreadAPI.py +++ b/lldb/test/python_api/thread/TestThreadAPI.py @@ -4,7 +4,7 @@ Test SBThread APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/python_api/type/TestTypeList.py b/lldb/test/python_api/type/TestTypeList.py index 9ea401afe96..5c79a9528fc 100644 --- a/lldb/test/python_api/type/TestTypeList.py +++ b/lldb/test/python_api/type/TestTypeList.py @@ -4,7 +4,7 @@ Test SBType and SBTypeList API. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/value/TestValueAPI.py b/lldb/test/python_api/value/TestValueAPI.py index d8776d506ae..525429b17f9 100644 --- a/lldb/test/python_api/value/TestValueAPI.py +++ b/lldb/test/python_api/value/TestValueAPI.py @@ -4,7 +4,7 @@ Test some SBValue APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/value/change_values/TestChangeValueAPI.py b/lldb/test/python_api/value/change_values/TestChangeValueAPI.py index 1b461d2981e..18c34d3af71 100644 --- a/lldb/test/python_api/value/change_values/TestChangeValueAPI.py +++ b/lldb/test/python_api/value/change_values/TestChangeValueAPI.py @@ -4,7 +4,7 @@ Test some SBValue APIs. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/value/linked_list/TestValueAPILinkedList.py b/lldb/test/python_api/value/linked_list/TestValueAPILinkedList.py index 3ce749fcfcf..c62c130d9c4 100644 --- a/lldb/test/python_api/value/linked_list/TestValueAPILinkedList.py +++ b/lldb/test/python_api/value/linked_list/TestValueAPILinkedList.py @@ -5,7 +5,7 @@ supports iteration till the end of list is reached. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/value_var_update/TestValueVarUpdate.py b/lldb/test/python_api/value_var_update/TestValueVarUpdate.py index e6d6d30c6e6..b7f53c160c6 100644 --- a/lldb/test/python_api/value_var_update/TestValueVarUpdate.py +++ b/lldb/test/python_api/value_var_update/TestValueVarUpdate.py @@ -2,7 +2,7 @@ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, sys, time import lldb diff --git a/lldb/test/python_api/watchpoint/TestSetWatchpoint.py b/lldb/test/python_api/watchpoint/TestSetWatchpoint.py index 161804ffbb5..2e513a510f5 100644 --- a/lldb/test/python_api/watchpoint/TestSetWatchpoint.py +++ b/lldb/test/python_api/watchpoint/TestSetWatchpoint.py @@ -4,7 +4,7 @@ Use lldb Python SBValue API to create a watchpoint for read_write of 'globl' var from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py b/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py index af72f685054..b2cb8de82d7 100644 --- a/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py +++ b/lldb/test/python_api/watchpoint/TestWatchpointIgnoreCount.py @@ -4,7 +4,7 @@ Use lldb Python SBWatchpoint API to set the ignore count. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/watchpoint/TestWatchpointIter.py b/lldb/test/python_api/watchpoint/TestWatchpointIter.py index 031a4bf6d18..c7bc94d859f 100644 --- a/lldb/test/python_api/watchpoint/TestWatchpointIter.py +++ b/lldb/test/python_api/watchpoint/TestWatchpointIter.py @@ -4,7 +4,7 @@ Use lldb Python SBTarget API to iterate on the watchpoint(s) for the target. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py index 582e60ebe2c..8d0b4af8fe2 100644 --- a/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py +++ b/lldb/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py @@ -4,7 +4,7 @@ Test watchpoint condition API. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py b/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py index 774288a05c3..016ca78e90d 100644 --- a/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py +++ b/lldb/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py @@ -4,7 +4,7 @@ Use lldb Python SBValue.WatchPointee() API to create a watchpoint for write of ' from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py b/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py index 2051635c13a..28a8f809bb1 100644 --- a/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py +++ b/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py @@ -4,7 +4,7 @@ Use lldb Python SBtarget.WatchAddress() API to create a watchpoint for write of from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re |