diff options
author | dlav-sc <daniil.avdeev@syntacore.com> | 2025-04-01 12:07:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-01 10:07:44 +0100 |
commit | dca7e0370e9684c00d95fb810c4efd31af0a3a9f (patch) | |
tree | 90252b71adcfd7ee27fb177406805a7e2d1e3213 /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | 7581cb68f9fbff7a4628da594580d81a803129ee (diff) | |
download | llvm-dca7e0370e9684c00d95fb810c4efd31af0a3a9f.zip llvm-dca7e0370e9684c00d95fb810c4efd31af0a3a9f.tar.gz llvm-dca7e0370e9684c00d95fb810c4efd31af0a3a9f.tar.bz2 |
[lldb] add --platform-available-ports option to the dotest.py (#112555)
This patch adds --platform-available-ports option to the dotest.py
script to avoid hardcoded gdb ports in lldb testsuite.
Currently, this option could be helpful in GdbRemoteTestCases (e.g.
TestLldbGdbServer, TestNonStop, TestGdbRemoteThreadsInStopReply,
TestGdbRemotePlatformFile, TestGdbRemote_vCont)
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index bcc1793..18c1566 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -103,6 +103,7 @@ failed = False lldb_platform_name = None lldb_platform_url = None lldb_platform_working_dir = None +lldb_platform_available_ports = None # Apple SDK apple_sdk = None |