We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31e9a45 + 11502e9 commit d2230a6Copy full SHA for d2230a6
lldb/test/API/lang/swift/async/stepping/step-in/task-switch/TestSwiftTaskSwitch.py
@@ -7,6 +7,7 @@
7
class TestCase(lldbtest.TestBase):
8
@swiftTest
9
@skipIf(oslist=["windows", "linux"])
10
+ @expectedFailureAll(bugnumber='rdar://115576769')
11
def test(self):
12
"""Test conditions for async step-in."""
13
self.build()
@@ -17,7 +18,7 @@ def test(self):
17
18
19
function = target.FindFunctions("$s1a5entryO4mainyyYaFZTQ0_")[0].function
20
instructions = list(function.GetInstructions(target))
-
21
+ self.assertGreater(len(instructions), 0)
22
# Expected to be a trampoline that tail calls `swift_task_switch`.
23
self.assertIn("swift_task_switch", instructions[-1].GetComment(target))
24
0 commit comments