mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 21:53:12 +08:00
[lldb-dap] Fix broken tests with commanEscapePrefix="" (#137384)
* Fix broken tests that use commanEscapePrefix="", in my case `TestDAP_stackTraceMissingModule.test_missingModule`
This commit is contained in:
@@ -860,7 +860,7 @@ class DebugCommunication(object):
|
||||
args_dict["enableAutoVariableSummaries"] = enableAutoVariableSummaries
|
||||
args_dict["enableSyntheticChildDebugging"] = enableSyntheticChildDebugging
|
||||
args_dict["displayExtendedBacktrace"] = displayExtendedBacktrace
|
||||
if commandEscapePrefix:
|
||||
if commandEscapePrefix is not None:
|
||||
args_dict["commandEscapePrefix"] = commandEscapePrefix
|
||||
command_dict = {"command": "launch", "type": "request", "arguments": args_dict}
|
||||
response = self.send_recv(command_dict)
|
||||
|
||||
Reference in New Issue
Block a user