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/benchmarks | |
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/benchmarks')
9 files changed, 0 insertions, 12 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py b/lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py index acc09224050..7863481ebe9 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py @@ -5,8 +5,6 @@ Test lldb data formatter subsystem. from __future__ import print_function -import os -import time import lldb from lldbsuite.test.decorators import * from lldbsuite.test.lldbbench import * diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py b/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py index 064e7b3f520..9e5b0ecc5b3 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py @@ -3,7 +3,6 @@ from __future__ import print_function -import os import sys import lldb from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py b/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py index dcbd36cc138..438a1fdd30a 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py @@ -3,7 +3,6 @@ from __future__ import print_function -import os import sys import lldb from lldbsuite.test.lldbbench import BenchBase diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py b/lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py index 3ed23e61540..5261204beea 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py @@ -3,7 +3,6 @@ from __future__ import print_function -import os import sys import lldb from lldbsuite.test import configuration diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py b/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py index 4ebb111c802..5ad59f34dbf 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py @@ -5,8 +5,6 @@ Test lldb data formatter subsystem. from __future__ import print_function -import os -import time import lldb from lldbsuite.test.decorators import * from lldbsuite.test.lldbbench import * diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py b/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py index 0c50661c5c7..ba5ba084c8b 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py @@ -5,8 +5,6 @@ Test lldb data formatter subsystem. from __future__ import print_function -import os -import time import lldb from lldbsuite.test.lldbbench import * from lldbsuite.test.decorators import * diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py b/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py index baacdc81e23..104b5d74c74 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py @@ -3,7 +3,6 @@ from __future__ import print_function -import os import sys import lldb from lldbsuite.test import configuration diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py b/lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py index 2a2a8ef000a..e5a8f168b64 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py @@ -2,7 +2,6 @@ from __future__ import print_function -import os import sys import lldb from lldbsuite.test import configuration diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py b/lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py index ab2b2004fc5..5bf78035be4 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py @@ -3,7 +3,6 @@ from __future__ import print_function -import os import sys import lldb from lldbsuite.test.lldbbench import * |