[docs] [lit] Add a more helpful description for lit.py's -s flag.

Reviewed By: yln

Differential Revision: https://reviews.llvm.org/D82808
This commit is contained in:
Varun Gandhi 2020-07-28 14:35:06 -07:00 committed by Julian Lettner
parent abf1ed70d6
commit 417d3d495f
2 changed files with 4 additions and 1 deletions

View File

@ -81,6 +81,7 @@ OUTPUT OPTIONS
.. option:: -s, --succinct
Show less output, for example don't show information on tests that pass.
Also show a progress bar, unless ``--no-progress-bar`` is specificed.
.. option:: -v, --verbose

View File

@ -42,7 +42,9 @@ def parse_args():
help="Suppress no error output",
action="store_true")
format_group.add_argument("-s", "--succinct",
help="Reduce amount of output",
help="Reduce amount of output."
" Additionally, show a progress bar,"
" unless --no-progress-bar is specified.",
action="store_true")
format_group.add_argument("-v", "--verbose",
dest="showOutput",