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/lang/cpp | |
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/lang/cpp')
18 files changed, 18 insertions, 18 deletions
diff --git a/lldb/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py b/lldb/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py index 72c01ad344d..3f788b7fd6f 100644 --- a/lldb/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py +++ b/lldb/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py @@ -4,7 +4,7 @@ Test lldb breakpoint command for CPP methods & functions in a namespace. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/lang/cpp/char1632_t/TestChar1632T.py b/lldb/test/lang/cpp/char1632_t/TestChar1632T.py index 0e55babc91a..b37c1bbdb71 100644 --- a/lldb/test/lang/cpp/char1632_t/TestChar1632T.py +++ b/lldb/test/lang/cpp/char1632_t/TestChar1632T.py @@ -5,7 +5,7 @@ Test that the C++11 support for char16_t and char32_t works correctly. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/lang/cpp/class_static/TestStaticVariables.py b/lldb/test/lang/cpp/class_static/TestStaticVariables.py index 5bb54810f2e..6d88585e453 100644 --- a/lldb/test/lang/cpp/class_static/TestStaticVariables.py +++ b/lldb/test/lang/cpp/class_static/TestStaticVariables.py @@ -4,7 +4,7 @@ Test display and Python APIs on file and class static variables. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/lang/cpp/class_types/TestClassTypes.py b/lldb/test/lang/cpp/class_types/TestClassTypes.py index 3fda9e4faa5..822a257bce7 100644 --- a/lldb/test/lang/cpp/class_types/TestClassTypes.py +++ b/lldb/test/lang/cpp/class_types/TestClassTypes.py @@ -2,7 +2,7 @@ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/lang/cpp/class_types/TestClassTypesDisassembly.py b/lldb/test/lang/cpp/class_types/TestClassTypesDisassembly.py index cbb34560254..5a56f9d0fd2 100644 --- a/lldb/test/lang/cpp/class_types/TestClassTypesDisassembly.py +++ b/lldb/test/lang/cpp/class_types/TestClassTypesDisassembly.py @@ -4,7 +4,7 @@ Test the lldb disassemble command on each call frame when stopped on C's ctor. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/lang/cpp/dynamic-value/TestCppValueCast.py b/lldb/test/lang/cpp/dynamic-value/TestCppValueCast.py index bcefda2caaf..5d5d471ccc7 100644 --- a/lldb/test/lang/cpp/dynamic-value/TestCppValueCast.py +++ b/lldb/test/lang/cpp/dynamic-value/TestCppValueCast.py @@ -4,7 +4,7 @@ Test lldb Python API SBValue::Cast(SBType) for C++ types. from __future__ import print_function -import lldb_shared +import use_lldb_suite import unittest2 import os, time diff --git a/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py index 4f1cd5e31c8..ee40cb14173 100644 --- a/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py +++ b/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py @@ -4,7 +4,7 @@ Use lldb Python API to test dynamic values in C++ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/lang/cpp/enum_types/TestCPP11EnumTypes.py b/lldb/test/lang/cpp/enum_types/TestCPP11EnumTypes.py index a31519ffc19..ec19c1bf920 100644 --- a/lldb/test/lang/cpp/enum_types/TestCPP11EnumTypes.py +++ b/lldb/test/lang/cpp/enum_types/TestCPP11EnumTypes.py @@ -2,7 +2,7 @@ from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py b/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py index babe4f2f98a..452f98889c2 100644 --- a/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py +++ b/lldb/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py @@ -4,7 +4,7 @@ Test lldb exception breakpoint command for CPP. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/lang/cpp/namespace/TestNamespace.py b/lldb/test/lang/cpp/namespace/TestNamespace.py index 40f12988cb5..80a710b25d7 100644 --- a/lldb/test/lang/cpp/namespace/TestNamespace.py +++ b/lldb/test/lang/cpp/namespace/TestNamespace.py @@ -4,7 +4,7 @@ Test the printing of anonymous and named namespace variables. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb diff --git a/lldb/test/lang/cpp/rdar12991846/TestRdar12991846.py b/lldb/test/lang/cpp/rdar12991846/TestRdar12991846.py index df1b5acb737..48d633ec398 100644 --- a/lldb/test/lang/cpp/rdar12991846/TestRdar12991846.py +++ b/lldb/test/lang/cpp/rdar12991846/TestRdar12991846.py @@ -5,7 +5,7 @@ Test that the expression parser returns proper Unicode strings. from __future__ import print_function -import lldb_shared +import use_lldb_suite import unittest2 import os, time diff --git a/lldb/test/lang/cpp/signed_types/TestSignedTypes.py b/lldb/test/lang/cpp/signed_types/TestSignedTypes.py index 5bac76e7020..e677a24b54f 100644 --- a/lldb/test/lang/cpp/signed_types/TestSignedTypes.py +++ b/lldb/test/lang/cpp/signed_types/TestSignedTypes.py @@ -4,7 +4,7 @@ Test that variables with signed types display correctly. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/lang/cpp/static_members/TestCPPStaticMembers.py b/lldb/test/lang/cpp/static_members/TestCPPStaticMembers.py index aaf16d3a049..004ec286156 100644 --- a/lldb/test/lang/cpp/static_members/TestCPPStaticMembers.py +++ b/lldb/test/lang/cpp/static_members/TestCPPStaticMembers.py @@ -4,7 +4,7 @@ Tests that C++ member and static variables have correct layout and scope. from __future__ import print_function -import lldb_shared +import use_lldb_suite import unittest2 import lldb diff --git a/lldb/test/lang/cpp/stl/TestSTL.py b/lldb/test/lang/cpp/stl/TestSTL.py index 4c7636cc74a..83cfd3edcee 100644 --- a/lldb/test/lang/cpp/stl/TestSTL.py +++ b/lldb/test/lang/cpp/stl/TestSTL.py @@ -4,7 +4,7 @@ Test some expressions involving STL data types. from __future__ import print_function -import lldb_shared +import use_lldb_suite import unittest2 import os, time diff --git a/lldb/test/lang/cpp/stl/TestStdCXXDisassembly.py b/lldb/test/lang/cpp/stl/TestStdCXXDisassembly.py index 1ffb7652849..48cd0ae763d 100644 --- a/lldb/test/lang/cpp/stl/TestStdCXXDisassembly.py +++ b/lldb/test/lang/cpp/stl/TestStdCXXDisassembly.py @@ -4,7 +4,7 @@ Test the lldb disassemble command on lib stdc++. from __future__ import print_function -import lldb_shared +import use_lldb_suite import unittest2 import os, time diff --git a/lldb/test/lang/cpp/unique-types/TestUniqueTypes.py b/lldb/test/lang/cpp/unique-types/TestUniqueTypes.py index 9ac570e67b0..577b038eb58 100644 --- a/lldb/test/lang/cpp/unique-types/TestUniqueTypes.py +++ b/lldb/test/lang/cpp/unique-types/TestUniqueTypes.py @@ -4,7 +4,7 @@ Test that template instaniations of std::vector<long> and <short> in the same mo from __future__ import print_function -import lldb_shared +import use_lldb_suite import lldb import lldbutil diff --git a/lldb/test/lang/cpp/unsigned_types/TestUnsignedTypes.py b/lldb/test/lang/cpp/unsigned_types/TestUnsignedTypes.py index 9154cc696c6..a463bf5f324 100644 --- a/lldb/test/lang/cpp/unsigned_types/TestUnsignedTypes.py +++ b/lldb/test/lang/cpp/unsigned_types/TestUnsignedTypes.py @@ -4,7 +4,7 @@ Test that variables with unsigned types display correctly. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import re diff --git a/lldb/test/lang/cpp/wchar_t/TestCxxWCharT.py b/lldb/test/lang/cpp/wchar_t/TestCxxWCharT.py index 70cc028bf2d..d70874726e6 100644 --- a/lldb/test/lang/cpp/wchar_t/TestCxxWCharT.py +++ b/lldb/test/lang/cpp/wchar_t/TestCxxWCharT.py @@ -5,7 +5,7 @@ Test that C++ supports wchar_t correctly. from __future__ import print_function -import lldb_shared +import use_lldb_suite import os, time import lldb |