[PATCH] D82808: [docs] [lit] Add a more helpful description for lit.py's -s flag.
Julian Lettner via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 28 14:39:33 PDT 2020
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG417d3d495f1c: [docs] [lit] Add a more helpful description for lit.py's -s flag. (authored by varungandhi-apple, committed by yln).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82808/new/
https://reviews.llvm.org/D82808
Files:
llvm/docs/CommandGuide/lit.rst
llvm/utils/lit/lit/cl_arguments.py
Index: llvm/utils/lit/lit/cl_arguments.py
===================================================================
--- llvm/utils/lit/lit/cl_arguments.py
+++ llvm/utils/lit/lit/cl_arguments.py
@@ -42,7 +42,9 @@
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",
Index: llvm/docs/CommandGuide/lit.rst
===================================================================
--- llvm/docs/CommandGuide/lit.rst
+++ llvm/docs/CommandGuide/lit.rst
@@ -81,6 +81,7 @@
.. 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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D82808.281367.patch
Type: text/x-patch
Size: 1062 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200728/b7e5daed/attachment.bin>
More information about the llvm-commits
mailing list