[llvm-branch-commits] [lldb] 77f0ea4 - [lldb] [test] Fix continue_to_breakpoint() args in TestThreadStepOut
Michał Górny via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Dec 7 00:57:13 PST 2020
Author: Michał Górny
Date: 2020-12-07T09:56:51+01:00
New Revision: 77f0ea4b5b978c7caa0788ae8b1a2429089021bd
URL: https://github.com/llvm/llvm-project/commit/77f0ea4b5b978c7caa0788ae8b1a2429089021bd
DIFF: https://github.com/llvm/llvm-project/commit/77f0ea4b5b978c7caa0788ae8b1a2429089021bd.diff
LOG: [lldb] [test] Fix continue_to_breakpoint() args in TestThreadStepOut
The test is skipped/xfailing on all platforms, so it seems that the API
got out of sync. Fix that so it returns to a 'proper' failure
on FreeBSD.
Differential Revision: https://reviews.llvm.org/D92746
Added:
Modified:
lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py b/lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
index eb2d264ec2e3..e273cc4be31b 100644
--- a/lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
+++ b/lldb/test/API/functionalities/thread/step_out/TestThreadStepOut.py
@@ -145,7 +145,8 @@ def step_out_test(self, step_out_func):
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")
More information about the llvm-branch-commits
mailing list