File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lldb/test/API/lang/swift/exception_breakpoint_recognizer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ def test(self):
16
16
thread = process .selected_thread
17
17
stop_desc = thread .GetStopDescription (128 )
18
18
# self.assertEqual(stop_desc, "Swift exception breakpoint")
19
- self .assertEqual (thread .frame [0 ].name , "swift_willThrow" )
19
+ self .assertEqual (thread .frame [0 ].symbol . name , "swift_willThrow" )
20
20
self .assertEqual (thread .selected_frame .idx , 1 )
21
21
22
22
# Second breakpoint in an typed throws function.
23
23
process .Continue ()
24
24
thread = process .selected_thread
25
25
stop_desc = thread .GetStopDescription (128 )
26
26
# self.assertEqual(stop_desc, "Swift exception breakpoint")
27
- self .assertEqual (thread .frame [0 ].name , "swift_willThrowTypedImpl" )
27
+ self .assertEqual (thread .frame [0 ].symbol . name , "swift_willThrowTypedImpl" )
28
28
self .assertEqual (thread .selected_frame .idx , 2 )
You can’t perform that action at this time.
0 commit comments