diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-08-02 08:06:22 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-08-02 08:06:22 +0000 |
commit | 9eedbc4f266d1e49d335d48c4c0f717401d927d2 (patch) | |
tree | 1f2d9a6a641434b88aa4ea9a4b59d9d2fcf0aa49 /lldb/packages/Python/lldbsuite/test/functionalities/postmortem | |
parent | f5b91f2a0f9d34f4ba63bc358279c0a5372dfb76 (diff) | |
download | bcm5719-llvm-9eedbc4f266d1e49d335d48c4c0f717401d927d2.tar.gz bcm5719-llvm-9eedbc4f266d1e49d335d48c4c0f717401d927d2.zip |
[lldb][NFC] Remove unused imports in python tests
llvm-svn: 367663
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/postmortem')
6 files changed, 0 insertions, 10 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py index 5a11a52e93a..1cfdc85c409 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py @@ -4,8 +4,6 @@ Test signal reporting when debugging with linux core files. from __future__ import print_function -import shutil -import struct import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py index 7cc3c0775ce..4de7a24bb22 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py @@ -4,8 +4,6 @@ Test signal reporting when debugging with linux core files. from __future__ import print_function -import shutil -import struct import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py index b03ea8da9bc..dbc8828b63a 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py @@ -4,8 +4,6 @@ Test basics of mach core file debugging. from __future__ import print_function -import shutil -import struct import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py index de6c3b7dd56..95a5bdc9dd8 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py @@ -1,5 +1,4 @@ import lldb -import struct class OperatingSystemPlugIn(object): diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py index b0e9f1dff22..74241a5fe60 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpUUID.py @@ -5,7 +5,6 @@ Test basics of Minidump debugging. from __future__ import print_function from six import iteritems -import shutil import lldb import os diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py index 320a5666b33..067b04d997d 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py @@ -4,9 +4,7 @@ Test NetBSD core file debugging. from __future__ import division, print_function -import shutil import signal -import struct import os import lldb |