From e8b9da712f579cbd18f5b993e984c18c501f4802 Mon Sep 17 00:00:00 2001 From: James Henderson Date: Tue, 9 Feb 2021 14:24:18 +0000 Subject: [PATCH] [debuginfo-tests] Delete unused/duplicate imports Differential Revision: https://reviews.llvm.org/D96502 Reviewed by: aprantl --- debuginfo-tests/lit.cfg.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/debuginfo-tests/lit.cfg.py b/debuginfo-tests/lit.cfg.py index da6cb9b..1657f63 100644 --- a/debuginfo-tests/lit.cfg.py +++ b/debuginfo-tests/lit.cfg.py @@ -5,14 +5,12 @@ import platform import re import subprocess import sys -import tempfile import lit.formats import lit.util from lit.llvm import llvm_config from lit.llvm.subst import ToolSubst -from lit.llvm.subst import FindTool # Configuration file for the 'lit' test runner. @@ -149,7 +147,6 @@ lit.util.usePlatformSdkOnDarwin(config, lit_config) # available_features: REQUIRES/UNSUPPORTED lit commands look at this list. if platform.system() == 'Darwin': - import subprocess xcode_lldb_vers = subprocess.check_output(['xcrun', 'lldb', '--version']).decode("utf-8") match = re.search('lldb-(\d+)', xcode_lldb_vers) if match: -- 2.7.4