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.
1 parent cc4cda8 commit 864ea96Copy full SHA for 864ea96
lldb/test/API/lang/swift/async/stepping/step-in/TestSwiftStepInAsync.py
@@ -54,7 +54,10 @@ def test(self):
54
process.Continue()
55
continue
56
57
- self.assertEqual(caller_after, caller_before)
+ # The entry function is missing this prefix dedicating resume functions.
58
+ prefix = re.compile(r'^\([0-9]+\) (await|suspend) resume partial function for ')
59
+ self.assertEqual(prefix.sub('', caller_after),
60
+ prefix.sub('', caller_before))
61
num_async_steps += 1
62
63
self.assertGreater(num_async_steps, 0)
0 commit comments