================
@@ -204,19 +204,19 @@ def create_parser():
         action="append",
         help='Run "setting set SETTING VALUE" before executing any test.',
     )
-    group.add_argument(
-        "-y",
-        type=int,
-        metavar="count",
-        help="Specify the iteration count used to collect our benchmarks. An 
example is the number of times to do 'thread step-over' to measure stepping 
speed.",
-    )
     group.add_argument(
         "-#",
         type=int,
         metavar="sharp",
         dest="sharp",
         help="Repeat the test suite for a specified number of times",
     )
+    group.add_argument(
+        "--failfast",
+        dest="failfast",
+        action="store_true",
+        help="Stop on first fail or error",
----------------
DavidSpickett wrote:

If this only applies to -#, say so.

If it applies to everything, this is fine as is.

https://github.com/llvm/llvm-project/pull/143797
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to