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

Varun Gandhi via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 29 14:46:09 PDT 2020


varungandhi-apple created this revision.
varungandhi-apple added a reviewer: yln.
Herald added subscribers: llvm-commits, delcypher.
Herald added a project: LLVM.

Repository:
  rG LLVM Github Monorepo

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 shows a progress bar, unless ``--no-progress-bar`` is specificed.
 
 .. option:: -v, --verbose
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D82808.274238.patch
Type: text/x-patch
Size: 1063 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200629/b222b8d9/attachment-0001.bin>


More information about the llvm-commits mailing list