diff options
author | Druzhkov Sergei <serzhdruzhok@gmail.com> | 2025-07-11 13:14:59 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-11 11:14:59 +0100 |
commit | 9098bffb0370273e67c76ab996eb4559dcc71f34 (patch) | |
tree | 0195639a0167a97771429c00bf73057b434bfc89 /lldb/packages/Python/lldbsuite/test | |
parent | 8472eb1361bbabd6428a65da446618503e439743 (diff) | |
download | llvm-9098bffb0370273e67c76ab996eb4559dcc71f34.zip llvm-9098bffb0370273e67c76ab996eb4559dcc71f34.tar.gz llvm-9098bffb0370273e67c76ab996eb4559dcc71f34.tar.bz2 |
[lldb-dap] Add external terminal support (#146950)
This patch deprecates the `runInTerminal` option in favour of `console`
which allow the user the specify an integrated or external option.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py index 68f58bf..d951667 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py @@ -908,7 +908,7 @@ class DebugCommunication(object): disableASLR=False, disableSTDIO=False, shellExpandArguments=False, - runInTerminal=False, + console: Optional[str] = None, enableAutoVariableSummaries=False, displayExtendedBacktrace=False, enableSyntheticChildDebugging=False, @@ -958,8 +958,8 @@ class DebugCommunication(object): args_dict["launchCommands"] = launchCommands if sourceMap: args_dict["sourceMap"] = sourceMap - if runInTerminal: - args_dict["runInTerminal"] = runInTerminal + if console: + args_dict["console"] = console if postRunCommands: args_dict["postRunCommands"] = postRunCommands if customFrameFormat: |