[LNT] r267846 - Add back the --verbose switch, the parent class is using it
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 27 19:53:36 PDT 2016
Author: matze
Date: Wed Apr 27 21:53:36 2016
New Revision: 267846
URL: http://llvm.org/viewvc/llvm-project?rev=267846&view=rev
Log:
Add back the --verbose switch, the parent class is using it
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=267846&r1=267845&r2=267846&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/test_suite.py (original)
+++ lnt/trunk/lnt/tests/test_suite.py Wed Apr 27 21:53:36 2016
@@ -193,6 +193,9 @@ class TestSuiteTest(BuiltinTest):
group.add_option("", "--succinct-compile-output",
help="run Make without VERBOSE=1",
action="store_true", dest="succinct")
+ group.add_option("-v", "--verbose", dest="verbose",
+ help="show verbose test results",
+ action="store_true", default=False)
group.add_option("", "--exclude-stat-from-submission",
dest="exclude_stat_from_submission",
help="Do not submit the stat of this type [%default]",
More information about the llvm-commits
mailing list