[PATCH] D19616: tests/test_suite: Do not hide commandlines
Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 27 17:32:11 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL267825: tests/test_suite: Do not hide commandlines (authored by matze).
Changed prior to commit:
http://reviews.llvm.org/D19616?vs=55308&id=55362#toc
Repository:
rL LLVM
http://reviews.llvm.org/D19616
Files:
lnt/trunk/lnt/tests/test_suite.py
Index: lnt/trunk/lnt/tests/test_suite.py
===================================================================
--- lnt/trunk/lnt/tests/test_suite.py
+++ lnt/trunk/lnt/tests/test_suite.py
@@ -190,9 +190,6 @@
help=("whether the autosubmit result should be committed "
"[%default]"),
type=int, default=True)
- group.add_option("-v", "--verbose", dest="verbose",
- help="show verbose test results",
- action="store_true", default=False)
group.add_option("", "--succinct-compile-output",
help="run Make without VERBOSE=1",
action="store_true", dest="succinct")
@@ -408,10 +405,9 @@
return self.opts.threads
def _check_call(self, *args, **kwargs):
- if self.opts.verbose:
- note('Execute: %s' % ' '.join(args[0]))
- if 'cwd' in kwargs:
- note(' (In %s)' % kwargs['cwd'])
+ note('Execute: %s' % ' '.join(args[0]))
+ if 'cwd' in kwargs:
+ note(' (In %s)' % kwargs['cwd'])
return subprocess.check_call(*args, **kwargs)
def _clean(self, path):
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D19616.55362.patch
Type: text/x-patch
Size: 1255 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160428/b28d21bd/attachment.bin>
More information about the llvm-commits
mailing list