Skip to content

Commit 7256538

Browse files
committed
Raise recursion limit in the blowstack test
1 parent aef2813 commit 7256538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def blowstack(fxn, arg, compare_to):
277277
# argument will raise RecursionError eventually.
278278
tuple_arg = (compare_to,)
279279
# TODO: GR-23749 revert back when truffle support is in
280-
for cnt in range(10000 if sys.implementation.name == "graalpython" else sys.getrecursionlimit()+5):
280+
for cnt in range(10000000 if sys.implementation.name == "graalpython" else sys.getrecursionlimit()+5):
281281
tuple_arg = (tuple_arg,)
282282
fxn(arg, tuple_arg)
283283

0 commit comments

Comments
 (0)