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
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ bool ThreadPlanStepThroughGenericTrampoline::ShouldStop(Event *event_ptr) {
s.GetData());
}

ClearNextBranchBreakpointExplainedStop();

if (IsPlanComplete())
return true;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil

@skipIf(bugnumber = "rdar://160698178")
class TestTrampoline(TestBase):
def setup(self, bkpt_str):
self.build()
Expand Down Expand Up @@ -101,4 +100,4 @@ def test_unused_target(self):
thread.StepInto()
name = thread.frames[0].GetFunctionName()
self.assertIn('unused_target', name)

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from lldbsuite.test.lldbtest import *
from lldbsuite.test.decorators import *

@skipIf(bugnumber="rdar://159531057")
class TestSwiftBackwardInteropStepping(TestBase):

def setup(self, bkpt_str):
Expand Down