Reflow comments

llvm-svn: 340219
This commit is contained in:
Adrian Prantl 2018-08-20 22:00:32 +00:00
parent c14fd34803
commit 0e45df4c0e
1 changed files with 3 additions and 3 deletions

View File

@ -44,9 +44,9 @@ class LLDBTest(TestFormat):
return (lit.Test.UNSUPPORTED, 'Test is unsupported')
testPath, testFile = os.path.split(test.getSourcePath())
# On Windows, the system does not always correctly interpret shebang lines.
# To make sure we can execute the tests, add python exe as the first parameter
# of the command.
# On Windows, the system does not always correctly interpret
# shebang lines. To make sure we can execute the tests, add
# python exe as the first parameter of the command.
cmd = [sys.executable] + self.dotest_cmd + [testPath, '-p', testFile]
try: