[lldb][NFC] Remove 'from __future__ import print_function' from all tests that don...
authorRaphael Isemann <teemperor@gmail.com>
Fri, 13 Dec 2019 11:11:23 +0000 (12:11 +0100)
committerRaphael Isemann <teemperor@gmail.com>
Fri, 13 Dec 2019 11:23:04 +0000 (12:23 +0100)
Summary:
A lot of tests do this trick but the vast majority of them don't even call `print()`.

Most of this patch was generated by a script that just looks at all the files and deletes the line if there is no `print (` or `print(` anywhere else in the file.
I checked the remaining tests manually and deleted the import if we never call print (but instead do stuff like `expr print(...)` and similar false-positives).
I also corrected the additional empty lines after the import in the files that I manually edited.

Reviewers: JDevlieghere, labath, jfb

Reviewed By: labath

Subscribers: dexonsmith, wuzish, nemanjai, kbarton, christof, arphaman, abidh, lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D71452

514 files changed:
lldb/packages/Python/lldbsuite/test/android/platform/TestDefaultCacheLineSize.py
lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py
lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py
lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
lldb/packages/Python/lldbsuite/test/commands/add-dsym/uuid/TestAddDsymCommand.py
lldb/packages/Python/lldbsuite/test/commands/apropos/with-process/TestAproposWithProcess.py
lldb/packages/Python/lldbsuite/test/commands/command/history/TestCommandHistory.py
lldb/packages/Python/lldbsuite/test/commands/command/nested_alias/TestNestedAlias.py
lldb/packages/Python/lldbsuite/test/commands/command/script/TestCommandScript.py
lldb/packages/Python/lldbsuite/test/commands/command/script/callables.py
lldb/packages/Python/lldbsuite/test/commands/command/script/import/TestImport.py
lldb/packages/Python/lldbsuite/test/commands/command/script/import/rdar-12586188/TestRdar12586188.py
lldb/packages/Python/lldbsuite/test/commands/command/script_alias/TestCommandScriptAlias.py
lldb/packages/Python/lldbsuite/test/commands/command/source/TestCommandSource.py
lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/TestDisassembleBreakpoint.py
lldb/packages/Python/lldbsuite/test/commands/disassemble/basic/TestFrameDisassemble.py
lldb/packages/Python/lldbsuite/test/commands/expression/anonymous-struct/TestCallUserAnonTypedef.py
lldb/packages/Python/lldbsuite/test/commands/expression/calculator_mode/TestCalculatorMode.py
lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallBuiltinFunction.py
lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStdStringFunction.py
lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallStopAndContinue.py
lldb/packages/Python/lldbsuite/test/commands/expression/call-function/TestCallUserDefinedFunction.py
lldb/packages/Python/lldbsuite/test/commands/expression/call-restarts/TestCallThatRestarts.py
lldb/packages/Python/lldbsuite/test/commands/expression/call-throws/TestCallThatThrows.py
lldb/packages/Python/lldbsuite/test/commands/expression/char/TestExprsChar.py
lldb/packages/Python/lldbsuite/test/commands/expression/completion/TestExprCompletion.py
lldb/packages/Python/lldbsuite/test/commands/expression/dont_allow_jit/TestAllowJIT.py
lldb/packages/Python/lldbsuite/test/commands/expression/expr-in-syscall/TestExpressionInSyscall.py
lldb/packages/Python/lldbsuite/test/commands/expression/fixits/TestFixIts.py
lldb/packages/Python/lldbsuite/test/commands/expression/formatters/TestFormatters.py
lldb/packages/Python/lldbsuite/test/commands/expression/ir-interpreter/TestIRInterpreter.py
lldb/packages/Python/lldbsuite/test/commands/expression/issue_11588/Test11588.py
lldb/packages/Python/lldbsuite/test/commands/expression/macros/TestMacros.py
lldb/packages/Python/lldbsuite/test/commands/expression/options/TestExprOptions.py
lldb/packages/Python/lldbsuite/test/commands/expression/persist_objc_pointeetype/TestPersistObjCPointeeType.py
lldb/packages/Python/lldbsuite/test/commands/expression/persistent_ptr_update/TestPersistentPtrUpdate.py
lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestNestedPersistentTypes.py
lldb/packages/Python/lldbsuite/test/commands/expression/persistent_types/TestPersistentTypes.py
lldb/packages/Python/lldbsuite/test/commands/expression/persistent_variables/TestPersistentVariables.py
lldb/packages/Python/lldbsuite/test/commands/expression/po_verbosity/TestPoVerbosity.py
lldb/packages/Python/lldbsuite/test/commands/expression/pr35310/TestExprsBug35310.py
lldb/packages/Python/lldbsuite/test/commands/expression/radar_8638051/Test8638051.py
lldb/packages/Python/lldbsuite/test/commands/expression/radar_9531204/TestPrintfAfterUp.py
lldb/packages/Python/lldbsuite/test/commands/expression/radar_9673664/TestExprHelpExamples.py
lldb/packages/Python/lldbsuite/test/commands/expression/save_jit_objects/TestSaveJITObjects.py
lldb/packages/Python/lldbsuite/test/commands/expression/scoped_enums/TestScopedEnumType.py
lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs.py
lldb/packages/Python/lldbsuite/test/commands/expression/test/TestExprs2.py
lldb/packages/Python/lldbsuite/test/commands/expression/timeout/TestCallWithTimeout.py
lldb/packages/Python/lldbsuite/test/commands/expression/top-level/TestTopLevelExprs.py
lldb/packages/Python/lldbsuite/test/commands/expression/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
lldb/packages/Python/lldbsuite/test/commands/expression/unwind_expression/TestUnwindExpression.py
lldb/packages/Python/lldbsuite/test/commands/expression/weak_symbols/TestWeakSymbols.py
lldb/packages/Python/lldbsuite/test/commands/expression/xvalue/TestXValuePrinting.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/array/TestArray.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/TestBadReference.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/complicated-expression/TestComplicatedExpression.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/dereference-this/TestDiagnoseDereferenceThis.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/inheritance/TestDiagnoseInheritance.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/local-variable/TestLocalVariable.py
lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py
lldb/packages/Python/lldbsuite/test/commands/frame/language/TestGuessLanguage.py
lldb/packages/Python/lldbsuite/test/commands/frame/var/TestFrameVar.py
lldb/packages/Python/lldbsuite/test/commands/help/TestHelp.py
lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py
lldb/packages/Python/lldbsuite/test/commands/platform/basic/TestPlatformCommand.py
lldb/packages/Python/lldbsuite/test/commands/platform/basic/TestPlatformPython.py
lldb/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py
lldb/packages/Python/lldbsuite/test/commands/process/attach-resume/TestAttachResume.py
lldb/packages/Python/lldbsuite/test/commands/process/attach/TestProcessAttach.py
lldb/packages/Python/lldbsuite/test/commands/process/attach/attach_denied/TestAttachDenied.py
lldb/packages/Python/lldbsuite/test/commands/process/launch-with-shellexpand/TestLaunchWithShellExpand.py
lldb/packages/Python/lldbsuite/test/commands/quit/TestQuit.py
lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/TestMPXRegisters.py
lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py
lldb/packages/Python/lldbsuite/test/commands/register/register/intel_xtended_registers/mpx_offset_intersection/TestMPXOffsetIntersection.py
lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py
lldb/packages/Python/lldbsuite/test/commands/settings/quoting/TestQuoting.py
lldb/packages/Python/lldbsuite/test/commands/target/basic/TestTargetCommand.py
lldb/packages/Python/lldbsuite/test/commands/target/create-deps/TestTargetCreateDeps.py
lldb/packages/Python/lldbsuite/test/commands/target/create-no-such-arch/TestNoSuchArch.py
lldb/packages/Python/lldbsuite/test/commands/target/stop-hooks/TestStopHooks.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchlocation/TestWatchLocation.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/hello_watchpoint/TestMyFirstWatchpoint.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/multi_watchpoint_slots/TestWatchpointMultipleSlots.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/multiple_hits/TestMultipleHits.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/step_over_watchpoint/TestStepOverWatchpoint.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/TestWatchpointCommands.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandLLDB.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/command/TestWatchpointCommandPython.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_commands/condition/TestWatchpointConditionCmd.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_on_vectors/TestValueOfVectorVariable.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_set_command/TestWatchLocationWithWatchSet.py
lldb/packages/Python/lldbsuite/test/commands/watchpoints/watchpoint_size/TestWatchpointSizes.py
lldb/packages/Python/lldbsuite/test/concurrent_base.py
lldb/packages/Python/lldbsuite/test/decorators.py
lldb/packages/Python/lldbsuite/test/dotest_args.py
lldb/packages/Python/lldbsuite/test/driver/batch_mode/TestBatchMode.py
lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestAbbreviations.py
lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestCommonShortSpellings.py
lldb/packages/Python/lldbsuite/test/functionalities/archives/TestBSDArchives.py
lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py
lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/TestFdLeak.py
lldb/packages/Python/lldbsuite/test/functionalities/backticks/TestBackticksWithoutATarget.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/TestObjCBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/TestDarwinLogBasic.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py
lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/TestCompactVectors.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/ObjCDataFormatterTestCase.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCCF.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCExpr.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCKVO.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSBundle.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSContainer.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSData.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSDate.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSURL.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCPlain.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjNSException.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/TestFormatPropagation.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/TestPrintArray.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/TestPrintObjectArray.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py
lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py
lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/TestDeadStrip.py
lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/TestDeletedExecutable.py
lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py
lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py
lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRecognizeBreakpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py
lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestThreadSelectionBug.py
lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWriteMemory.py
lldb/packages/Python/lldbsuite/test/functionalities/history/TestHistoryRecall.py
lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/TestInferiorChanged.py
lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashing.py
lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashingStep.py
lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferiorStep.py
lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py
lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/TestLoadUsingPaths.py
lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py
lldb/packages/Python/lldbsuite/test/functionalities/memory-region/TestMemoryRegion.py
lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/TestMemoryCache.py
lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py
lldb/packages/Python/lldbsuite/test/functionalities/memory/read/TestMemoryRead.py
lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py
lldb/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
lldb/packages/Python/lldbsuite/test/functionalities/paths/TestPaths.py
lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py
lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py
lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py
lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py
lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py
lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py
lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py
lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py
lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/TestPreRunDylibs.py
lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py
lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/TestProcessSaveCore.py
lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/TestPtrRefs.py
lldb/packages/Python/lldbsuite/test/functionalities/rerun/TestRerun.py
lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py
lldb/packages/Python/lldbsuite/test/functionalities/set-data/TestSetData.py
lldb/packages/Python/lldbsuite/test/functionalities/signal/TestSendSignal.py
lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-abrt/TestHandleAbort.py
lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/TestHandleSegv.py
lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/TestRaise.py
lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py
lldb/packages/Python/lldbsuite/test/functionalities/testid/TestTestId.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/TestCrashDuringStep.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/TestCreateAfterAttach.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/TestCreateDuringStep.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/TestThreadStepOut.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/TestThreadExit.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py
lldb/packages/Python/lldbsuite/test/functionalities/type_completion/TestTypeCompletion.py
lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py
lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/TestEhFrameUnwind.py
lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/TestValueMD5Crash.py
lldb/packages/Python/lldbsuite/test/functionalities/var_path/TestVarPath.py
lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/TestWrongCommands.py
lldb/packages/Python/lldbsuite/test/issue_verification/TestFail.py.park
lldb/packages/Python/lldbsuite/test/issue_verification/TestInvalidDecorator.py.park
lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFail.py.park
lldb/packages/Python/lldbsuite/test/issue_verification/TestSignal.py.park
lldb/packages/Python/lldbsuite/test/issue_verification/TestSignalOutsideTestMethod.py.park
lldb/packages/Python/lldbsuite/test/issue_verification/rerun_base.py
lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py
lldb/packages/Python/lldbsuite/test/lang/c/array_types/TestArrayTypes.py
lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py
lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py
lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py
lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py
lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py
lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py
lldb/packages/Python/lldbsuite/test/lang/c/forward/TestForwardDeclaration.py
lldb/packages/Python/lldbsuite/test/lang/c/function_types/TestFunctionTypes.py
lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py
lldb/packages/Python/lldbsuite/test/lang/c/local_types/TestUseClosestType.py
lldb/packages/Python/lldbsuite/test/lang/c/local_variables/TestLocalVariables.py
lldb/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py
lldb/packages/Python/lldbsuite/test/lang/c/set_values/TestSetValues.py
lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
lldb/packages/Python/lldbsuite/test/lang/c/step-target/TestStepTarget.py
lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py
lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestThreadStepping.py
lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py
lldb/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py
lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py
lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py
lldb/packages/Python/lldbsuite/test/lang/cpp/char8_t/TestCxxChar8_t.py
lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py
lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypes.py
lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py
lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestDynamicValue.py
lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py
lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py
lldb/packages/Python/lldbsuite/test/lang/cpp/global_variables/TestCPPGlobalVariables.py
lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/TestInlines.py
lldb/packages/Python/lldbsuite/test/lang/cpp/modules-import/TestCXXModulesImport.py
lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py
lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py
lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py
lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/TestCPPStaticMembers.py
lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py
lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py
lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py
lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/TestCppTypeLookup.py
lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py
lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/TestUniqueTypes.py
lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py
lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py
lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/TestCxxWCharT.py
lldb/packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py
lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py
lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestConflictingDefinition.py
lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/TestObjCExceptions.py
lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/TestForwardDecl.py
lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestConstStrings.py
lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py
lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsNSArray.py
lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsNSError.py
lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethodsString.py
lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestRuntimeTypes.py
lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestSymbolTable.py
lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/TestGlobalObjects.py
lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/TestHiddenIvars.py
lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/TestObjCiVarIMP.py
lldb/packages/Python/lldbsuite/test/lang/objc/modules-app-update/TestClangModulesAppUpdate.py
lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/TestModulesAutoImport.py
lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py
lldb/packages/Python/lldbsuite/test/lang/objc/modules-hash-mismatch/TestClangModulesHashMismatch.py
lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/TestIncompleteModules.py
lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
lldb/packages/Python/lldbsuite/test/lang/objc/modules-update/TestClangModulesUpdate.py
lldb/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc++/TestObjCXX.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxArray.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxDictionary.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntaxLiteral.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/TestObjcOptimized.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/TestObjCProperty.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/TestObjCStaticMethod.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/TestObjCStructArgument.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/TestObjCStructReturn.py
lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py
lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/TestPtrRefsObjC.py
lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py
lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/TestRdar10967107.py
lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/TestRdar11355592.py
lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/TestRealDefinition.py
lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py
lldb/packages/Python/lldbsuite/test/linux/builtin_trap/TestBuiltinTrap.py
lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
lldb/packages/Python/lldbsuite/test/lldbpexpect.py
lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py
lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/TestDuplicateMembers.py
lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestFindAppInBundle.py
lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py
lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/TestDeepBundle.py
lldb/packages/Python/lldbsuite/test/macosx/function-starts/TestFunctionStarts.py
lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/TestIndirectSymbols.py
lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/TestKernVerStrLCNOTE.py
lldb/packages/Python/lldbsuite/test/macosx/load-kext/TestLoadKext.py
lldb/packages/Python/lldbsuite/test/macosx/nslog/TestDarwinNSLogOutput.py
lldb/packages/Python/lldbsuite/test/macosx/order/TestOrderFile.py
lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/TestSafeFuncCalls.py
lldb/packages/Python/lldbsuite/test/macosx/thread-names/TestInterruptThreadNames.py
lldb/packages/Python/lldbsuite/test/macosx/universal/TestUniversal.py
lldb/packages/Python/lldbsuite/test/macosx/version_zero/TestGetVersionZeroVersion.py
lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
lldb/packages/Python/lldbsuite/test/python_api/breakpoint/TestBreakpointAPI.py
lldb/packages/Python/lldbsuite/test/python_api/class_members/TestSBTypeClassMembers.py
lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py
lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/TestSBFrameFindValue.py
lldb/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
lldb/packages/Python/lldbsuite/test/python_api/lldbutil/TestSwigVersion.py
lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
lldb/packages/Python/lldbsuite/test/python_api/name_lookup/TestNameLookup.py
lldb/packages/Python/lldbsuite/test/python_api/objc_type/TestObjCType.py
lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/TestReadMemCString.py
lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/Test-rdar-12481949.py
lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py
lldb/packages/Python/lldbsuite/test/python_api/sblaunchinfo/TestSBLaunchInfo.py
lldb/packages/Python/lldbsuite/test/python_api/sbstructureddata/TestStructuredDataAPI.py
lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/TestSBValuePersist.py
lldb/packages/Python/lldbsuite/test/python_api/section/TestSectionAPI.py
lldb/packages/Python/lldbsuite/test/python_api/signals/TestSignalsAPI.py
lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py
lldb/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py
lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/TestValueAPIEmptyClass.py
lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py
lldb/packages/Python/lldbsuite/test/sample_test/TestSampleTest.py
lldb/packages/Python/lldbsuite/test/sanity/TestModuleCacheSanity.py
lldb/packages/Python/lldbsuite/test/terminal/TestEditline.py
lldb/packages/Python/lldbsuite/test/test_result.py
lldb/packages/Python/lldbsuite/test/test_runner/test/test_process_control.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAttach.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExitCode.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteKill.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteModuleInfo.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vCont.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vContThreads.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/register-reading/TestGdbRemoteGPacket.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/test/test_lldbgdbserverutils.py
lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/TestVSCode_completions.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/lldbvscode_testcase.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py
lldb/packages/Python/lldbsuite/test/types/HideTestFailures.py
lldb/packages/Python/lldbsuite/test/types/TestDoubleTypes.py
lldb/packages/Python/lldbsuite/test/types/TestDoubleTypesExpr.py
lldb/packages/Python/lldbsuite/test/types/TestFloatTypes.py
lldb/packages/Python/lldbsuite/test/types/TestFloatTypesExpr.py
lldb/packages/Python/lldbsuite/test/types/TestRecursiveTypes.py

index d035984..20027c4 100644 (file)
@@ -2,7 +2,6 @@
 Test that we can listen to modules loaded events.
 """
 
-from __future__ import print_function
 
 
 import lldb
index 18e2afa..35ea3ae 100644 (file)
@@ -2,7 +2,6 @@
 Test that breakpoints in an IT instruction don't fire if their condition is
 false.
 """
-from __future__ import print_function
 
 
 import lldb
index 11c3bc8..8a0fe37 100644 (file)
@@ -1,6 +1,5 @@
 """Test that the 'add-dsym', aka 'target symbols add', command informs the user about success or failure."""
 
-from __future__ import print_function
 
 
 import os
index c6b90ba..fea56f1 100644 (file)
@@ -2,7 +2,6 @@
 Test calling a function that throws an ObjC exception, make sure that it doesn't propagate the exception.
 """
 
-from __future__ import print_function
 
 
 import lldb
index 33a423c..5266266 100644 (file)
@@ -2,7 +2,6 @@
 Test the lldb command line completion mechanism for the 'expr' command.
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 6a7e607..a383f69 100644 (file)
@@ -1,8 +1,5 @@
 """Test that we are able to evaluate expressions when the inferior is blocked in a syscall"""
 
-from __future__ import print_function
-
-
 import lldb
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
index 2c20b63..abff18f 100644 (file)
@@ -4,7 +4,6 @@ valobj.AddressOf() returns None when an address is
 expected in a SyntheticChildrenProvider
 """
 
-from __future__ import print_function
 
 
 import lldb
index 4fe228d..8437eac 100644 (file)
@@ -11,7 +11,6 @@ o test_expr_commands_can_handle_quotes:
   Throw some expression commands with quotes at lldb.
 """
 
-from __future__ import print_function
 
 
 import unittest2
index 741fb7b..dca564c 100644 (file)
@@ -2,7 +2,6 @@
 Test the output of `frame diagnose` for an array access
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 5d52a00..31656af 100644 (file)
@@ -4,7 +4,6 @@ Test some lldb help commands.
 See also CommandInterpreter::OutputFormattedHelpText().
 """
 
-from __future__ import print_function
 
 
 import os
index 5199057..16321dc 100644 (file)
@@ -2,7 +2,6 @@
 Test lldb logging.  This test just makes sure logging doesn't crash, and produces some output.
 """
 
-from __future__ import print_function
 
 
 import os
index 28c05b8..d4dbd16 100644 (file)
@@ -2,7 +2,6 @@
 Test lldb's quit command.
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 2d96433..31be1cc 100644 (file)
@@ -3,7 +3,6 @@ Test that loading of dependents works correctly for all the potential
 combinations.
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 589e2a3..843a2ac 100644 (file)
@@ -4,7 +4,6 @@ within same word boundary. We should be able to install individual watchpoints
 on any of the bytes, half-word, or word. This is only for ARM/AArch64 targets.
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 1a3aa79..6acd71c 100644 (file)
@@ -10,7 +10,6 @@ until exit or a crash takes place, and the number of events seen by LLDB is
 verified to match the expected number of events.
 """
 
-from __future__ import print_function
 
 
 import unittest2
index 10f5232..7009767 100644 (file)
@@ -1,5 +1,4 @@
 from __future__ import absolute_import
-from __future__ import print_function
 
 # System modules
 from distutils.version import LooseVersion
index fd77c7d..2d5f048 100644 (file)
@@ -1,4 +1,3 @@
-from __future__ import print_function
 from __future__ import absolute_import
 
 # System modules
index 285445b..4a129bb 100644 (file)
@@ -2,9 +2,6 @@
 Test some lldb command abbreviations and aliases for proper resolution.
 """
 
-from __future__ import print_function
-
-
 import lldb
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
index fc231de..9e4b3bb 100644 (file)
@@ -3,7 +3,6 @@ Test some lldb command abbreviations to make sure the common short spellings of
 many commands remain available even after we add/delete commands in the future.
 """
 
-from __future__ import print_function
 
 
 import lldb
index 00ff1c6..0ca4843 100644 (file)
@@ -2,7 +2,6 @@
 Test the AddressSanitizer runtime support for report breakpoint and data extraction.
 """
 
-from __future__ import print_function
 
 
 import json
index f8d5704..2164ddf 100644 (file)
@@ -2,7 +2,6 @@
 Test embedded breakpoints, like `asm int 3;` in x86 or or `__debugbreak` on Windows.
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 2258989..0409c78 100644 (file)
@@ -3,7 +3,6 @@ Test lldb breakpoint setting by source regular expression.
 This test just tests the source file & function restrictions.
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 07ba7c7..d1ec140 100644 (file)
@@ -2,7 +2,6 @@
 Test the use of setjmp/longjmp for non-local goto operations in a single-threaded inferior.
 """
 
-from __future__ import print_function
 
 
 import lldb
index 73ad394..cbfc852 100644 (file)
@@ -7,7 +7,6 @@ end up with a dump of the WoW64 layer.  In that case, LLDB must do extra work to
 get the 32-bit register contexts.
 """
 
-from __future__ import print_function
 from six import iteritems
 
 
index bffb69e..ca268af 100644 (file)
@@ -1,6 +1,5 @@
 ï»¿"""Test that lldb command 'process signal SIGUSR1' to send a signal to the inferior works."""
 
-from __future__ import print_function
 
 
 import lldb
index a594ad2..b3d3317 100644 (file)
@@ -3,7 +3,6 @@ Add a test to verify our test instance returns something non-None for
 an id(). Other parts of the test running infrastructure are counting on this.
 """
 
-from __future__ import print_function
 from lldbsuite.test.lldbtest import TestBase
 
 class TestIdTestCase(TestBase):
index da64bc0..fcdba39 100644 (file)
@@ -1,6 +1,5 @@
 """Tests that a FAIL is detected by the testbot."""
 
-from __future__ import print_function
 
 import lldbsuite.test.lldbtest as lldbtest
 
index bcd1926..8d1fc95 100644 (file)
@@ -4,7 +4,6 @@ the tests fail on the first run, then pass on the second.
 Do not mark them as flakey as, at this time, flakey tests will
 run twice, thus causing the second run to succeed."""
 
-from __future__ import print_function
 
 import rerun_base
 
index d73ac74..5a34c09 100644 (file)
@@ -1,6 +1,5 @@
 """Tests that an exceptional exit is detected by the testbot."""
 
-from __future__ import print_function
 
 import os
 import signal
index 00c4165..69e23e3 100644 (file)
@@ -1,6 +1,5 @@
 """Test that anonymous structs/unions are transparent to member access"""
 
-from __future__ import print_function
 
 
 import lldb
index db05c04..cc9ae8e 100644 (file)
@@ -1,6 +1,5 @@
 """Test breakpoint by file/line number; and list variables with array types."""
 
-from __future__ import print_function
 
 
 import lldb
index 47e6cd1..cd82d15 100644 (file)
@@ -1,6 +1,5 @@
 """Test that lldb can invoke blocks and access variables inside them"""
 
-from __future__ import print_function
 
 
 import unittest2
index 4956744..690d1ab 100644 (file)
@@ -1,6 +1,5 @@
 """Show global variables and check that they do indeed have global scopes."""
 
-from __future__ import print_function
 
 
 from lldbsuite.test.decorators import *
index 3c53de1..e40c316 100644 (file)
@@ -5,7 +5,6 @@ even if there are other definitions of the type in other
 CU's.  Assert that that is true.
 """
 
-from __future__ import print_function
 
 
 import lldb
index b1805f4..381292a 100644 (file)
@@ -5,7 +5,6 @@ DW_OP_constu(X < 32) to DW_OP_litX which broke the debugger because
 it didn't read the value as an unsigned.
 """
 
-from __future__ import print_function
 
 
 from lldbsuite.test.decorators import *
index 250088e..789939b 100644 (file)
@@ -1,6 +1,5 @@
 """Test that types defined in shared libraries work correctly."""
 
-from __future__ import print_function
 
 
 import unittest2
index b3786fb..7665b2f 100644 (file)
@@ -1,6 +1,5 @@
 """Test the 'step target' feature."""
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index c9460b7..c20e443 100644 (file)
@@ -1,6 +1,5 @@
 """Test stepping over vrs. hitting breakpoints & subsequent stepping in various forms."""
 
-from __future__ import print_function
 
 
 import lldb
index 6321426..cbbb636 100644 (file)
@@ -1,6 +1,5 @@
 """Look up type information for typedefs of same name at different lexical scope and check for correct display."""
 
-from __future__ import print_function
 
 
 import lldb
index e2f13c6..986d9e5 100644 (file)
@@ -3,7 +3,6 @@
 Test that the C++11 support for char16_t and char32_t works correctly.
 """
 
-from __future__ import print_function
 
 
 import lldb
index ddbe373..e7f2c1a 100644 (file)
@@ -3,7 +3,6 @@
 Test that C++ supports char8_t correctly.
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 6971e56..45d6443 100644 (file)
@@ -1,6 +1,5 @@
 """Test breakpoint on a class constructor; and variable list the this object."""
 
-from __future__ import print_function
 
 
 import os
index 5e240b8..4870247 100644 (file)
@@ -1,6 +1,5 @@
 """Test that C++ global variables can be inspected by name and also their mangled name."""
 
-from __future__ import print_function
 
 
 from lldbsuite.test.decorators import *
index f94c6c3..5f77d8f 100644 (file)
@@ -1,6 +1,5 @@
 """Test variable lookup when stopped in inline functions."""
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 9f2965a..341b205 100644 (file)
@@ -2,7 +2,6 @@
 Test some expressions involving STL data types.
 """
 
-from __future__ import print_function
 
 
 import unittest2
index 3e4fee0..78121c1 100644 (file)
@@ -2,7 +2,6 @@
 Test that template instaniations of std::vector<long> and <short> in the same module have the correct types.
 """
 
-from __future__ import print_function
 
 
 import lldb
index 3f3f924..22fe96b 100644 (file)
@@ -2,8 +2,6 @@
 Test C++ virtual function and virtual inheritance.
 """
 
-from __future__ import print_function
-
 import os
 import re
 import lldb
index d015413..b4fe539 100644 (file)
@@ -1,6 +1,5 @@
 """Test that lldb works correctly on compile units form different languages."""
 
-from __future__ import print_function
 
 
 import re
index 3e549f7..e790e6e 100644 (file)
@@ -1,8 +1,5 @@
 """Test printing ivars and ObjC objects captured in blocks that are made in methods of an ObjC class."""
 
-from __future__ import print_function
-
-
 import lldb
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
index 1f1e36a..fd35d64 100644 (file)
@@ -1,6 +1,5 @@
 """Test that a forward-declared class works when its complete definition is in a library"""
 
-from __future__ import print_function
 
 
 import lldb
index fb946ac..6e8e989 100644 (file)
@@ -3,7 +3,6 @@ Test that objective-c constant strings are generated correctly by the expression
 parser.
 """
 
-from __future__ import print_function
 
 
 import lldb
index a199dfa..abfc762 100644 (file)
@@ -2,10 +2,6 @@
 Test symbol table access for main.m.
 """
 
-from __future__ import print_function
-
-
-
 import lldb
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
index 7cc8330..5cc6f4e 100644 (file)
@@ -1,6 +1,5 @@
 """Test that a global ObjC object found before the process is started updates correctly."""
 
-from __future__ import print_function
 
 
 import lldb
index ce62c6a..03a325a 100644 (file)
@@ -1,6 +1,5 @@
 """Test that hidden ivars in a shared library are visible from the main executable."""
 
-from __future__ import print_function
 
 
 import unittest2
index f9df830..344af99 100644 (file)
@@ -2,7 +2,6 @@
 Make sure that ivars of Objective-C++ classes are visible in LLDB.
 """
 
-from __future__ import print_function
 
 
 import lldb
index 53d84e9..749c713 100644 (file)
@@ -1,6 +1,5 @@
 """Test printing ObjC objects that use unbacked properties - so that the static ivar offsets are incorrect."""
 
-from __future__ import print_function
 
 
 import lldb
index 78b6f0e..12a22f6 100644 (file)
@@ -1,6 +1,5 @@
 """Test printing ObjC objects that use unbacked properties - so that the static ivar offsets are incorrect."""
 
-from __future__ import print_function
 
 
 import lldb
index 95deaf6..cf638c7 100644 (file)
@@ -1,6 +1,5 @@
 """Test that the Objective-C syntax for dictionary/array literals and indexing works"""
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 0cb26bb..5291b46 100644 (file)
@@ -1,6 +1,5 @@
 """Test that the Objective-C syntax for dictionary/array literals and indexing works"""
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 6516530..e17343b 100644 (file)
@@ -1,6 +1,5 @@
 """Test that the Objective-C syntax for dictionary/array literals and indexing works"""
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index 3a8630b..6209f14 100644 (file)
@@ -6,7 +6,6 @@ or 'self' variable was not properly read if the compiler
 optimized it into a register.
 """
 
-from __future__ import print_function
 
 
 import lldb
index eb71dd0..3092c3f 100644 (file)
@@ -2,7 +2,6 @@
 Use lldb Python API to verify that expression evaluation for property references uses the correct getters and setters
 """
 
-from __future__ import print_function
 
 
 import lldb
index d46a48e..aade40c 100644 (file)
@@ -2,7 +2,6 @@
 Test the ptr_refs tool on Darwin with Objective-C
 """
 
-from __future__ import print_function
 
 import lldb
 from lldbsuite.test.decorators import *
index cf4cf05..c6633b7 100644 (file)
@@ -2,7 +2,6 @@
 Test that CoreFoundation classes CFGregorianDate and CFRange are not improperly uniqued
 """
 
-from __future__ import print_function
 
 
 import lldb
index 28debce..22de873 100644 (file)
@@ -3,7 +3,6 @@ Test lldb ability to unwind a stack with a function containing a call to the
 '__builtin_trap' intrinsic, which GCC (4.6) encodes to an illegal opcode.
 """
 
-from __future__ import print_function
 
 
 import lldb
index ef60ead..13552dc 100644 (file)
@@ -1,4 +1,3 @@
-from __future__ import print_function
 from __future__ import absolute_import
 
 # System modules
index cb4f00b..ecab535 100644 (file)
@@ -1,6 +1,5 @@
 """Test that a dSYM can be found when a binary is in a deep bundle with multiple pathname components."""
 
-from __future__ import print_function
 
 #import unittest2
 from time import sleep
index 9a9efae..2ab217d 100644 (file)
@@ -6,7 +6,6 @@ These tests are currently only supported when running against Darwin
 targets.
 """
 
-from __future__ import print_function
 
 import lldb
 import platform
index 2cff74e..778d06d 100644 (file)
@@ -2,7 +2,6 @@
 Test that debug symbols have the correct order as specified by the order file.
 """
 
-from __future__ import print_function
 
 
 import re
index 591b1c7..e109f91 100644 (file)
@@ -1,5 +1,4 @@
 
-from __future__ import print_function
 import lldbsuite.test.lldbtest as lldbtest
 
 from builder_base import *
index 17fb4b0..dd57846 100644 (file)
@@ -2,9 +2,6 @@
 Test SBBreakpoint APIs.
 """
 
-from __future__ import print_function
-
-
 import lldb
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
index c06ee14..f072f5a 100644 (file)
@@ -2,7 +2,6 @@
 Test SBProcess APIs, including ReadMemory(), WriteMemory(), and others.
 """
 
-from __future__ import print_function
 
 
 import lldb
index 2ce00d4..3d9f171 100644 (file)
@@ -3,7 +3,6 @@ This is a sanity check that verifies that the module cache path is set
 correctly and points inside the default test build directory.
 """
 
-from __future__ import print_function
 
 import lldb
 import lldbsuite.test.lldbutil as lldbutil
index 0167104..cf82f5d 100644 (file)
@@ -2,7 +2,6 @@
 Test that the lldb editline handling is configured correctly.
 """
 
-from __future__ import print_function
 
 
 import lldb
index 7c924cf..6920eac 100644 (file)
@@ -8,7 +8,6 @@ and results of a single test run.
 """
 
 from __future__ import absolute_import
-from __future__ import print_function
 
 # System modules
 import inspect
index f31e33c..b3b5aee 100755 (executable)
@@ -11,7 +11,6 @@ within the LLDB test suite.
 Tests the process_control module.
 """
 
-from __future__ import print_function
 
 # System imports.
 import os
index ac3b6d7..72e0d94 100644 (file)
@@ -1,6 +1,5 @@
 # This test makes sure that lldb-server supports and properly handles
 # QPassSignals GDB protocol package.
-from __future__ import print_function
 
 import gdbremote_testcase
 from lldbsuite.test.decorators import *
index 3e6929f..91b1383 100644 (file)
@@ -2,7 +2,6 @@
 Test that variables of integer basic types are displayed correctly.
 """
 
-from __future__ import print_function
 
 
 import AbstractBase
index e9704c6..adce103 100644 (file)
@@ -2,7 +2,6 @@
 Test that variables of floating point types are displayed correctly.
 """
 
-from __future__ import print_function
 
 
 import AbstractBase
index fea26d1..20c5410 100644 (file)
@@ -2,7 +2,6 @@
 Test that variable expressions of floating point types are evaluated correctly.
 """
 
-from __future__ import print_function
 
 
 import AbstractBase
index 01045e3..7377552 100644 (file)
@@ -2,7 +2,6 @@
 Test that variables of floating point types are displayed correctly.
 """
 
-from __future__ import print_function
 
 
 import AbstractBase
index 56f7aa5..ceb257e 100644 (file)
@@ -2,7 +2,6 @@
 Test that variable expressions of floating point types are evaluated correctly.
 """
 
-from __future__ import print_function
 
 
 import AbstractBase
index 3d514d3..69194cf 100644 (file)
@@ -2,7 +2,6 @@
 Test that recursive types are handled correctly.
 """
 
-from __future__ import print_function
 
 
 import lldb