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/api | |
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/api')
5 files changed, 0 insertions, 15 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py b/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py index 20fd3030721..6f95cd7959e 100644 --- a/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py +++ b/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py @@ -6,8 +6,6 @@ should compile and link with the LLDB framework.""" from __future__ import print_function -import os -import re from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil diff --git a/lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py b/lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py index 6b6a37e5a6b..d0359849683 100644 --- a/lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py +++ b/lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py @@ -4,9 +4,6 @@ Test that we can listen to modules loaded events. from __future__ import print_function -import copy -import os -import time import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py b/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py index f6bde75dcb7..1447bbdfe42 100644 --- a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py +++ b/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py @@ -4,9 +4,6 @@ from __future__ import print_function import os -import re -import subprocess -import sys import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py b/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py index f4e166955ac..1268ff9306a 100644 --- a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py +++ b/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py @@ -4,8 +4,6 @@ from __future__ import print_function import os -import re -import subprocess import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py b/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py index d91eec1fd51..436f645e652 100644 --- a/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py +++ b/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py @@ -6,11 +6,9 @@ from __future__ import print_function import os -import re from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil -import subprocess class SBBreakpointCallbackCase(TestBase): @@ -47,7 +45,6 @@ class SBBreakpointCallbackCase(TestBase): self.build_and_test( 'driver.cpp listener_test.cpp test_listener_event_description.cpp', 'test_listener_event_description') - pass @skipIfRemote @skipIfNoSBHeaders @@ -61,7 +58,6 @@ class SBBreakpointCallbackCase(TestBase): self.build_and_test( 'driver.cpp listener_test.cpp test_listener_event_process_state.cpp', 'test_listener_event_process_state') - pass @skipIfRemote @skipIfNoSBHeaders @@ -74,7 +70,6 @@ class SBBreakpointCallbackCase(TestBase): self.build_and_test( 'driver.cpp listener_test.cpp test_listener_resume.cpp', 'test_listener_resume') - pass def build_and_test(self, sources, test_name, args=None): """ Build LLDB test from sources, and run expecting 0 exit code """ |