forked from OSchip/llvm-project
[lit] Remove semicolons in Python code
Summary: Semicolons aren't necessary as statement terminators in Python, and each of these uses are superfluous as they appear at the end of a line. The convention is to not use semicolons where not needed, so remove them. Reviewers: echristo, delcypher, beanz, ddunbar Subscribers: llvm-commits, mehdi_amini Differential Revision: https://reviews.llvm.org/D25409 llvm-svn: 283707
This commit is contained in:
parent
e35cf5deb8
commit
f35afa2cfc
|
@ -503,7 +503,7 @@ def executeScriptInternal(test, litConfig, tmpBase, commands, cwd):
|
|||
return out, err, exitCode, timeoutInfo
|
||||
|
||||
def executeScript(test, litConfig, tmpBase, commands, cwd):
|
||||
bashPath = litConfig.getBashPath();
|
||||
bashPath = litConfig.getBashPath()
|
||||
isWin32CMDEXE = (litConfig.isWindows and not bashPath)
|
||||
script = tmpBase + '.script'
|
||||
if isWin32CMDEXE:
|
||||
|
|
|
@ -114,8 +114,8 @@ def which(command, paths = None):
|
|||
def checkToolsPath(dir, tools):
|
||||
for tool in tools:
|
||||
if not os.path.exists(os.path.join(dir, tool)):
|
||||
return False;
|
||||
return True;
|
||||
return False
|
||||
return True
|
||||
|
||||
def whichTools(tools, paths):
|
||||
for path in paths.split(os.pathsep):
|
||||
|
|
Loading…
Reference in New Issue