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

Julian Lettner via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 28 14:39:26 PDT 2020


Author: Varun Gandhi
Date: 2020-07-28T14:36:03-07:00
New Revision: 417d3d495f1cfb0a2f7b60d00829925126fdcfd9

URL: https://github.com/llvm/llvm-project/commit/417d3d495f1cfb0a2f7b60d00829925126fdcfd9
DIFF: https://github.com/llvm/llvm-project/commit/417d3d495f1cfb0a2f7b60d00829925126fdcfd9.diff

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

Reviewed By: yln

Differential Revision: https://reviews.llvm.org/D82808

Added: 
    

Modified: 
    llvm/docs/CommandGuide/lit.rst
    llvm/utils/lit/lit/cl_arguments.py

Removed: 
    


################################################################################
diff  --git a/llvm/docs/CommandGuide/lit.rst b/llvm/docs/CommandGuide/lit.rst
index d29d293f32d8..c9ad808e1350 100644
--- a/llvm/docs/CommandGuide/lit.rst
+++ b/llvm/docs/CommandGuide/lit.rst
@@ -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
 

diff  --git a/llvm/utils/lit/lit/cl_arguments.py b/llvm/utils/lit/lit/cl_arguments.py
index 966863624feb..baeb3635298f 100644
--- a/llvm/utils/lit/lit/cl_arguments.py
+++ b/llvm/utils/lit/lit/cl_arguments.py
@@ -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",


        


More information about the llvm-commits mailing list