[Lldb-commits] [lldb] r259234 - Fix this test for the the switch in default for IgnoreBreakpoints in SBFrame.EvaluateExpression.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 29 12:09:30 PST 2016


Author: jingham
Date: Fri Jan 29 14:09:30 2016
New Revision: 259234

URL: http://llvm.org/viewvc/llvm-project?rev=259234&view=rev
Log:
Fix this test for the the switch in default for IgnoreBreakpoints in SBFrame.EvaluateExpression.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py?rev=259234&r1=259233&r2=259234&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py Fri Jan 29 14:09:30 2016
@@ -155,9 +155,14 @@ class TestCStepping(TestBase):
         current_file = frame.GetLineEntry().GetFileSpec()
 
         break_in_b.SetEnabled(True)
-        frame.EvaluateExpression ("b (4)", lldb.eNoDynamicValues, False)
+        options = lldb.SBExpressionOptions()
+        options.SetIgnoreBreakpoints(False)
+        options.SetFetchDynamicValue(False)
+        options.SetUnwindOnError(False)
+        frame.EvaluateExpression ("b (4)", options)
 
         threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_b)
+
         if len(threads) != 1:
             self.fail ("Failed to stop at breakpoint in b when calling b.")
         thread = threads[0]




More information about the lldb-commits mailing list