[lit] Bring back `--threads` option alias
authorJulian Lettner <jlettner@apple.com>
Thu, 10 Oct 2019 19:43:57 +0000 (19:43 +0000)
committerJulian Lettner <jlettner@apple.com>
Thu, 10 Oct 2019 19:43:57 +0000 (19:43 +0000)
Bring back `--threads` option which was lost in the move of the
command line argument parsing code to cl_arguments.py.  Update docs
since `--workers` is preferred.

llvm-svn: 374432

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

index 7bb499b..ff70a21 100644 (file)
@@ -53,7 +53,7 @@ GENERAL OPTIONS
 
  Show the :program:`lit` help message.
 
-.. option:: -j N, --threads=N
+.. option:: -j N, --workers=N
 
  Run ``N`` tests in parallel.  By default, this is automatically chosen to
  match the number of detected available CPUs.
index 4999260..e5435d6 100644 (file)
@@ -16,7 +16,7 @@ def parse_args():
             help="Show version and exit",
             action="store_true",
             default=False)
-    parser.add_argument("-j", "--workers",
+    parser.add_argument("-j", "--threads", "--workers",
             dest="numWorkers",
             metavar="N",
             help="Number of workers used for testing",