Skip to content

Commit 6b7cbc0

Browse files
committed
Add skipping decoration for test_iter
1 parent bc583c3 commit 6b7cbc0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graalpython/lib-python/3/test/test_iter.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
from test.support import check_free_after_iterating
77
import pickle
88
import collections.abc
9+
from test import support
910

1011
# Test result of triple loop (too big to inline)
1112
TRIPLETS = [(0, 0, 0), (0, 0, 1), (0, 0, 2),
@@ -1006,6 +1007,7 @@ def test_iter_neg_setstate(self):
10061007
self.assertEqual(next(it), 0)
10071008
self.assertEqual(next(it), 1)
10081009

1010+
@support.impl_detail("finalization", graalvm=False)
10091011
def test_free_after_iterating(self):
10101012
check_free_after_iterating(self, iter, SequenceClass, (0,))
10111013

0 commit comments

Comments
 (0)