[Lldb-commits] [PATCH] D92746: [lldb] [test] Fix continue_to_breakpoint() args in TestThreadStepOut

Michał Górny via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 7 00:57:32 PST 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG77f0ea4b5b97: [lldb] [test] Fix continue_to_breakpoint() args in TestThreadStepOut (authored by mgorny).
Herald added a project: LLDB.

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D92746/new/

https://reviews.llvm.org/D92746

Files:
  lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py


Index: lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
===================================================================
--- lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
+++ lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
@@ -145,7 +145,8 @@
         if len(breakpoint_threads) == 1:
             success = thread.Suspend()
             self.assertTrue(success, "Couldn't suspend a thread")
-            bkpt_threads = lldbutil.continue_to_breakpoint(bkpt)
+            bkpt_threads = lldbutil.continue_to_breakpoint(self.inferior_process,
+                                                           bkpt)
             self.assertEqual(len(bkpt_threads), 1, "Second thread stopped")
             success = thread.Resume()
             self.assertTrue(success, "Couldn't resume a thread")


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D92746.309828.patch
Type: text/x-patch
Size: 850 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20201207/66c6b4cb/attachment.bin>


More information about the lldb-commits mailing list