Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that importing modules in C works as expected."""

from __future__ import print_function


import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test settings and readings of program variables."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that types defined in shared libraries work correctly."""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that types defined in shared libraries with stripped symbols work correctly."""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test the 'step target' feature."""

from __future__ import print_function

import lldb
from lldbsuite.test.decorators import *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test stepping over vrs. hitting breakpoints & subsequent stepping in various forms."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test thread stepping features in combination with frame select.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that thread-local storage can be read correctly."""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb breakpoint command for CPP methods & functions in a namespace.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Test that C++ supports char8_t correctly.
"""

from __future__ import print_function

import lldb
from lldbsuite.test.decorators import *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test display and Python APIs on file and class static variables.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test breakpoint on a class constructor; and variable list the this object."""

from __future__ import print_function


import os
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
dynamic value calculator doesn't confuse them
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Use lldb Python API to test dynamic values in C++
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Look up enum type information and check for correct display."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb exception breakpoint command for CPP.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test variable lookup when stopped in inline functions."""

from __future__ import print_function

import lldb
from lldbsuite.test.decorators import *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that importing modules in C++ works as expected."""

from __future__ import print_function

import unittest2
import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test the printing of anonymous and named namespace variables.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test the printing of anonymous and named namespace variables.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that forward declarations don't cause bogus conflicts in namespaced types"""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that variables with signed types display correctly.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Tests that C++ member and static variables have correct layout and scope.
"""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test stepping into std::function
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test some expressions involving STL data types.
"""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that we work properly with classes with the trivial_abi attribute
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that we can lookup types correctly in the expression parser
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Test that the expression parser returns proper Unicode strings.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that variables with unsigned types display correctly.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
Test C++ virtual function and virtual inheritance.
"""

from __future__ import print_function

import os
import re
import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Test that C++ supports wchar_t correctly.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that lldb works correctly on compile units form different languages."""

from __future__ import print_function


import re
Expand Down
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that types defined in shared libraries work correctly."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Test lldb Obj-C exception support.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
parser.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test more expression command sequences with objective-c.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test more expression command sequences with objective-c.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test more expression command sequences with objective-c.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test more expression command sequences with objective-c.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that Objective-C methods from the runtime work correctly.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that dynamically discovered ivars of type IMP do not crash LLDB
"""

from __future__ import print_function



Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import unittest2
import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that importing modules in Objective-C works as expected."""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that the clang modules cache directory can be controlled."""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import unittest2
import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that DWARF types are trusted over module types"""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that inline functions from modules are imported correctly"""

from __future__ import print_function



Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import unittest2
import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that importing modules in Objective-C works as expected."""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Make sure that ivars of Objective-C++ classes are visible in LLDB.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Use lldb Python API to test base class resolution for ObjC classes
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that the expression parser doesn't get confused by 'id' and 'Class'"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Use lldb Python API to make sure the dynamic checkers are doing their jobs.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that we are able to properly report a usable dynamic type
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Use lldb Python API to test dynamic values in ObjC
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
optimized it into a register.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test calling functions in static methods with a stripped binary."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test calling functions in static methods."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test passing structs to Objective-C methods."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test calling functions in class methods."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test calling methods on super."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that objective-c method returning BOOL works correctly.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that CoreFoundation classes CFGregorianDate and CFRange are not improperly uniqued
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that we do not attempt to make a dynamic type for a 'const char*'
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that we are able to find out how many children NSWindow has
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that types defined in shared libraries work correctly."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that we properly vend children for a single entry NSDictionary"""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
'__builtin_trap' intrinsic, which GCC (4.6) encodes to an illegal opcode.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
over a thread creation instruction.
"""

from __future__ import print_function


import lldb
Expand Down
1 change: 0 additions & 1 deletion lldb/packages/Python/lldbsuite/test/lldbpexpect.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function
from __future__ import absolute_import

# System modules
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that the 'add-dsym', aka 'target symbols add', succeeds in the middle of debug session."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test breaking inside functions defined within a BSD archive file libfoo.a."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Make sure we can find the binary inside an app bundle.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that a dSYM can be found when a binary is in a bundle hnd has dots in the filename."""

from __future__ import print_function

#import unittest2
import os.path
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that we read the function starts section.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test stepping and setting breakpoints in indirect and re-exported symbols."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that corefiles with an LC_NOTE "kern ver str" load command is used."""

from __future__ import print_function


import os
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test loading of a kext binary.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
targets.
"""

from __future__ import print_function

import lldb
import platform
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test function call thread safety."""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Test that we get thread names when interrupting a process."""
from __future__ import print_function


import time
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test aspects of lldb commands on universal binaries."""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Read in a library with a version number of 0.0.0, make sure we produce a good version.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

from __future__ import print_function
import lldbsuite.test.lldbtest as lldbtest

from builder_base import *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
Test SBBreakpoint APIs.
"""

from __future__ import print_function


import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test SBType APIs to fetch member function types.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb Python API for file handles.
"""

from __future__ import print_function

import os
import io
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test that SBFrame::FindValue finds things but does not duplicate the entire variables list"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test Python APIs for target (launch and attach), breakpoint, and process."""

from __future__ import print_function


import os
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that we embed the swig version into the lldb module
"""

from __future__ import print_function

"""
import os
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test SBprocess and SBThread APIs with printing of the stack traces using lldbutil.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test SBTarget APIs.
"""

from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test SBType for ObjC classes.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test reading c-strings from memory via SB API."""

from __future__ import print_function

import os
import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Check that SBValue.GetValueAsSigned() does the right thing for a 32-bit -1.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test the SBData APIs."""

from __future__ import print_function


from math import fabs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test SBLaunchInfo
"""

from __future__ import print_function


from lldbsuite.test.lldbtest import *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test some SBStructuredData API.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test SBValue::Persist"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test SBSection APIs.
"""

from __future__ import print_function


from lldbsuite.test.decorators import *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test SBProcess APIs, including ReadMemory(), WriteMemory(), and others.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test SBSymbolContext APIs.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test some SBValue APIs.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import lldb
from lldbsuite.test.decorators import *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test SBValue::GetValueDidChange"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Describe the purpose of the test class here.
"""

from __future__ import print_function


import lldb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
correctly and points inside the default test build directory.
"""

from __future__ import print_function

import lldb
import lldbsuite.test.lldbutil as lldbutil
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that the lldb editline handling is configured correctly.
"""

from __future__ import print_function


import lldb
Expand Down
1 change: 0 additions & 1 deletion lldb/packages/Python/lldbsuite/test/test_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"""

from __future__ import absolute_import
from __future__ import print_function

# System modules
import inspect
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
Tests the process_control module.
"""

from __future__ import print_function

# System imports.
import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

# lldb test suite imports
from lldbsuite.test.decorators import *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import json
import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function



Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import json
import re
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function



Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import gdbremote_testcase
from lldbsuite.test.decorators import *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import json
import re
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import time

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import gdbremote_testcase
Expand Down
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function


import unittest2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

import gdbremote_testcase
from lldbsuite.test.decorators import *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb-vscode setBreakpoints request
"""

from __future__ import print_function

import unittest2
import vscode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb-vscode setBreakpoints request
"""

from __future__ import print_function

import unittest2
import vscode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb-vscode setBreakpoints request
"""

from __future__ import print_function

import unittest2
import vscode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb-vscode setBreakpoints request
"""

from __future__ import print_function

import unittest2
import vscode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb-vscode completions request
"""

from __future__ import print_function

import lldbvscode_testcase
import unittest2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb-vscode setBreakpoints request
"""

from __future__ import print_function

import unittest2
import vscode
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function

from lldbsuite.test.lldbtest import *
import os
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb-vscode setBreakpoints request
"""

from __future__ import print_function

import unittest2
import vscode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test lldb-vscode setBreakpoints request
"""

from __future__ import print_function

import unittest2
import vscode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that variables of integer basic types are displayed correctly.
"""

from __future__ import print_function


import AbstractBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that variables of floating point types are displayed correctly.
"""

from __future__ import print_function


import AbstractBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that variable expressions of floating point types are evaluated correctly.
"""

from __future__ import print_function


import AbstractBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that variables of floating point types are displayed correctly.
"""

from __future__ import print_function


import AbstractBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that variable expressions of floating point types are evaluated correctly.
"""

from __future__ import print_function


import AbstractBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Test that recursive types are handled correctly.
"""

from __future__ import print_function


import lldb
Expand Down