Skip to content

Commit 5a8b225

Browse files
committed
unmark test_asyncio
1 parent 17856c8 commit 5a8b225

2 files changed

Lines changed: 0 additions & 8 deletions

File tree

Lib/test/_test_multiprocessing.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4057,8 +4057,6 @@ def test_heap(self):
40574057
self.assertEqual(len(heap._allocated_blocks), 0, heap._allocated_blocks)
40584058
self.assertEqual(len(heap._len_to_seq), 0)
40594059

4060-
# TODO: RUSTPYTHON - gc.enable() not implemented
4061-
@unittest.expectedFailure
40624060
def test_free_from_gc(self):
40634061
# Check that freeing of blocks by the garbage collector doesn't deadlock
40644062
# (issue #12352).

Lib/test/test_asyncio/test_futures.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -678,8 +678,6 @@ def __del__(self):
678678
fut = self._new_future(loop=self.loop)
679679
fut.set_result(Evil())
680680

681-
# TODO: RUSTPYTHON - gc.get_referrers not implemented
682-
@unittest.expectedFailure
683681
def test_future_cancelled_result_refcycles(self):
684682
f = self._new_future(loop=self.loop)
685683
f.cancel()
@@ -691,8 +689,6 @@ def test_future_cancelled_result_refcycles(self):
691689
self.assertIsNotNone(exc)
692690
self.assertListEqual(gc.get_referrers(exc), [])
693691

694-
# TODO: RUSTPYTHON - gc.get_referrers not implemented
695-
@unittest.expectedFailure
696692
def test_future_cancelled_exception_refcycles(self):
697693
f = self._new_future(loop=self.loop)
698694
f.cancel()
@@ -720,8 +716,6 @@ def test_future_del_segfault(self):
720716
with self.assertRaises(AttributeError):
721717
del fut._log_traceback
722718

723-
# TODO: RUSTPYTHON - gc.get_referents not implemented
724-
@unittest.expectedFailure
725719
def test_future_iter_get_referents_segfault(self):
726720
# See https://github.com/python/cpython/issues/122695
727721
import _asyncio

0 commit comments

Comments
 (0)