Skip to content

Commit ee72db3

Browse files
committed
Debug on CI #1
1 parent 0aad09c commit ee72db3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/test/API/lang/swift/async/actors/unprioritised_jobs/TestSwiftActorUnprioritisedJobs.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ class TestCase(TestBase):
99
@swiftTest
1010
@skipUnlessFoundation
1111
def test_actor_unprioritised_jobs(self):
12-
"""Verify that an exposes its unprioritised jobs (queue)."""
12+
"""Verify that an actor exposes its unprioritised jobs (queue)."""
1313
self.build()
1414
_, _, thread, _ = lldbutil.run_to_source_breakpoint(
1515
self, "break here", lldb.SBFileSpec("main.swift")
1616
)
1717
frame = thread.GetSelectedFrame()
18+
self.expect("v a", substrs=["just show me the output"])
1819
unprioritised_jobs = frame.var("a.$defaultActor.unprioritised_jobs")
1920
# There are 4 child tasks (async let), the first one occupies the actor
2021
# with a sleep, the next 3 go on to the queue.

0 commit comments

Comments
 (0)