File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
lldb/test/API/lang/swift/async/actors/unprioritised_jobs Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ def test_actor_unprioritised_jobs(self):
18
18
unprioritised_jobs = frame .var ("a.$defaultActor.unprioritised_jobs" )
19
19
# There are 4 child tasks (async let), the first one occupies the actor
20
20
# with a sleep, the next 3 go on to the queue.
21
- if unprioritised_jobs . num_children > 0 :
22
- self .assertEqual (unprioritised_jobs .num_children , 3 )
23
- for job in unprioritised_jobs :
24
- self .assertRegex (job .name , r"^\d+" )
25
- self .assertRegex (job .summary , r"^id:\d+ flags:\S+" )
21
+ # TODO: rdar://148377173
22
+ # self.assertEqual(unprioritised_jobs.num_children, 3)
23
+ for job in unprioritised_jobs :
24
+ self .assertRegex (job .name , r"^\d+" )
25
+ self .assertRegex (job .summary , r"^id:\d+ flags:\S+" )
You can’t perform that action at this time.
0 commit comments