Skip to content

Commit d2230a6

Browse files
Merge pull request #7483 from adrian-prantl/xfail-115576769
Xfail 115576769
2 parents 31e9a45 + 11502e9 commit d2230a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/test/API/lang/swift/async/stepping/step-in/task-switch/TestSwiftTaskSwitch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
class TestCase(lldbtest.TestBase):
88
@swiftTest
99
@skipIf(oslist=["windows", "linux"])
10+
@expectedFailureAll(bugnumber='rdar://115576769')
1011
def test(self):
1112
"""Test conditions for async step-in."""
1213
self.build()
@@ -17,7 +18,7 @@ def test(self):
1718

1819
function = target.FindFunctions("$s1a5entryO4mainyyYaFZTQ0_")[0].function
1920
instructions = list(function.GetInstructions(target))
20-
21+
self.assertGreater(len(instructions), 0)
2122
# Expected to be a trampoline that tail calls `swift_task_switch`.
2223
self.assertIn("swift_task_switch", instructions[-1].GetComment(target))
2324

0 commit comments

Comments
 (0)