[Lldb-commits] [lldb] [lldb] add --platform-available-ports option to the dotest.py (PR #112555)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 28 08:17:06 PDT 2025
================
@@ -292,6 +292,13 @@ def create_parser():
metavar="platform-working-dir",
help="The directory to use on the remote platform.",
)
+ group.add_argument(
+ "--platform-available-ports",
+ dest="lldb_platform_available_ports",
+ nargs="*",
----------------
DavidSpickett wrote:
You could make this parse into integers as well, so it will fail earlier - https://docs.python.org/3/library/argparse.html#type
I think `type=int` would work here.
https://github.com/llvm/llvm-project/pull/112555
More information about the lldb-commits
mailing list