Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lldb/source/Target/ThreadPlanStepOut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,10 @@ bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) {
else
return m_step_through_inline_plan_sp->ShouldStop(event_ptr);
} else if (m_step_out_further_plan_sp) {
if (m_step_out_further_plan_sp->MischiefManaged())
if (m_step_out_further_plan_sp->MischiefManaged()) {
m_step_out_further_plan_sp.reset();
done = true;
}
else
return m_step_out_further_plan_sp->ShouldStop(event_ptr);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from lldbsuite.test.decorators import *
import lldbsuite.test.lldbutil as lldbutil

@skipIf(bugnumber = "rdar://159531304")
class TestSwiftObjcProtocol(TestBase):
def skip_debug_info_libraries(self):
if platform.system() == "Darwin":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import os
import platform

@skipIf(bugnumber ="rdar://159531310")
class TestStepThroughAllocatingInit(lldbtest.TestBase):
mydir = lldbtest.TestBase.compute_mydir(__file__)

Expand Down
1 change: 0 additions & 1 deletion lldb/test/API/lang/swift/stepping/TestSwiftStepping.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import os
import platform

@skipIf(bugnumber="rdar://159531088")
class TestSwiftStepping(lldbtest.TestBase):

mydir = lldbtest.TestBase.compute_mydir(__file__)
Expand Down