[PATCH] D144986: [Dexter] Use non-blocking resume when debugging Visual Studio
Stephen Tozer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 1 04:09:48 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6376c5b976de: [Dexter] Use non-blocking resume when debugging Visual Studio (authored by StephenTozer).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D144986/new/
https://reviews.llvm.org/D144986
Files:
cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py
Index: cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py
===================================================================
--- cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py
+++ cross-project-tests/debuginfo-tests/dexter/dex/debugger/visualstudio/VisualStudio.py
@@ -259,13 +259,13 @@
ActiveConfiguration = self._fetch_property(project.Properties, 'ActiveConfiguration').Object
ActiveConfiguration.DebugSettings.CommandArguments = cmdline_str
- self._fn_go()
+ self._fn_go(False)
def step(self):
- self._fn_step()
+ self._fn_step(False)
def go(self) -> ReturnCode:
- self._fn_go()
+ self._fn_go(False)
return ReturnCode.OK
def set_current_stack_frame(self, idx: int = 0):
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144986.501455.patch
Type: text/x-patch
Size: 839 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230301/6e33665d/attachment.bin>
More information about the llvm-commits
mailing list