File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
graalpython/lib-python/3/test Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -469,6 +469,7 @@ def test_highly_nested(self):
469
469
del obj
470
470
support .gc_collect ()
471
471
472
+ @support .impl_detail ("finalization" , graalvm = False )
472
473
def test_highly_nested_subclass (self ):
473
474
# Issues 25395 and 35983: test that the trashcan mechanism works
474
475
# correctly for OrderedDict: deleting a highly nested OrderDict
@@ -637,6 +638,7 @@ def test_dict_update(self):
637
638
dict .update (od , [('spam' , 1 )])
638
639
self .assertNotIn ('NULL' , repr (od ))
639
640
641
+ @support .impl_detail ("finalization" , graalvm = False )
640
642
def test_reference_loop (self ):
641
643
# Issue 25935
642
644
OrderedDict = self .OrderedDict
@@ -648,6 +650,7 @@ class A:
648
650
gc .collect ()
649
651
self .assertIsNone (r ())
650
652
653
+ @support .impl_detail ("finalization" , graalvm = False )
651
654
def test_free_after_iterating (self ):
652
655
support .check_free_after_iterating (self , iter , self .OrderedDict )
653
656
support .check_free_after_iterating (self , lambda d : iter (d .keys ()), self .OrderedDict )
You can’t perform that action at this time.
0 commit comments