Skip to content
Merged
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 @@ -7,6 +7,7 @@
class TestCase(lldbtest.TestBase):
@swiftTest
@skipIf(oslist=["windows", "linux"])
@expectedFailureAll(bugnumber='rdar://115576769')
def test(self):
"""Test conditions for async step-in."""
self.build()
Expand All @@ -17,7 +18,7 @@ def test(self):

function = target.FindFunctions("$s1a5entryO4mainyyYaFZTQ0_")[0].function
instructions = list(function.GetInstructions(target))

self.assertGreater(len(instructions), 0)
# Expected to be a trampoline that tail calls `swift_task_switch`.
self.assertIn("swift_task_switch", instructions[-1].GetComment(target))

Expand Down