Skip to content

Commit 695e475

Browse files
committed
Update tests
1 parent db80b44 commit 695e475

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lldb/test/API/commands/expression/call-function/TestCallStopAndContinue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test(self):
3131
self.expect(
3232
"expr -i false -- returnsFive()",
3333
error=True,
34-
substrs=["Execution was interrupted, reason: breakpoint"],
34+
substrs=["Expression execution hit a breakpoint: breakpoint"],
3535
)
3636

3737
self.runCmd("continue", "Continue completed")

lldb/test/API/commands/expression/unwind_expression/TestUnwindExpression.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Test stopping at a breakpoint in an expression, and unwinding from there.
33
"""
44

5-
65
import lldb
76
from lldbsuite.test.decorators import *
87
from lldbsuite.test.lldbtest import *
@@ -71,7 +70,7 @@ def do_unwind_test(self, thread, bkpt, timeout):
7170
self.assertTrue(val.GetError().Fail(), "We did not complete the execution.")
7271
error_str = val.GetError().GetCString()
7372
self.assertIn(
74-
"Execution was interrupted, reason: breakpoint",
73+
"Expression execution hit a breakpoint: breakpoint",
7574
error_str,
7675
"And the reason was right.",
7776
)

0 commit comments

Comments
 (0)