From: Brian Gesiak Date: Mon, 10 Oct 2016 01:18:14 +0000 (+0000) Subject: [lit] Remove semicolons in Python code X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4bf8ed1328d320a6ca54b5b69415cba16055c64b;p=llvm [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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283707 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/lit/lit/TestRunner.py b/utils/lit/lit/TestRunner.py index 7c5683036a0..b283e7f6f10 100644 --- a/utils/lit/lit/TestRunner.py +++ b/utils/lit/lit/TestRunner.py @@ -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: diff --git a/utils/lit/lit/util.py b/utils/lit/lit/util.py index d3187e3c3b3..609011b1972 100644 --- a/utils/lit/lit/util.py +++ b/utils/lit/lit/util.py @@ -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):