[LNT] r266690 - Fix some line wrapping
Chris Matthews via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 18 15:36:11 PDT 2016
Author: cmatthews
Date: Mon Apr 18 17:36:11 2016
New Revision: 266690
URL: http://llvm.org/viewvc/llvm-project?rev=266690&view=rev
Log:
Fix some line wrapping
Modified:
lnt/trunk/lnt/tests/test_suite.py
Modified: lnt/trunk/lnt/tests/test_suite.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/test_suite.py?rev=266690&r1=266689&r2=266690&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/test_suite.py (original)
+++ lnt/trunk/lnt/tests/test_suite.py Mon Apr 18 17:36:11 2016
@@ -713,19 +713,24 @@ class TestSuiteTest(BuiltinTest):
matcher = re.compile(r"^\.\.\.\s{}$".format(short_name),
re.MULTILINE | re.IGNORECASE)
if not matcher.search(make_targets):
- assert False, "did not find benchmark, must be nestsed? Unimplemented."
+ assert False, "did not find benchmark, nestsed? Unimplemented."
local_path = os.path.join(path, bm_path)
- make_deps = [self.opts.make, "VERBOSE=1", "timeit-target", "timeit-host", "fpcmp-host"]
+ make_deps = [self.opts.make, "VERBOSE=1", "timeit-target",
+ "timeit-host", "fpcmp-host"]
note(" ".join(make_deps))
- p = subprocess.Popen(make_deps, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+ p = subprocess.Popen(make_deps,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.STDOUT)
std_out, std_err = p.communicate()
note(std_out)
make_save_temps = [self.opts.make, "VERBOSE=1", short_name]
note(" ".join(make_save_temps))
- p = subprocess.Popen(make_save_temps, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+ p = subprocess.Popen(make_save_temps,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.STDOUT)
std_out, std_err = p.communicate()
note(std_out)
with open(report_path + "/build.log", 'w') as f:
@@ -753,7 +758,9 @@ class TestSuiteTest(BuiltinTest):
note(out)
make_time_report = [self.opts.make, "VERBOSE=1", short_name]
- p = subprocess.Popen(make_time_report, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ p = subprocess.Popen(make_time_report,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE)
std_out, std_err = p.communicate()
with open(report_path + "/time-report.txt", 'w') as f:
More information about the llvm-commits
mailing list