File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -755,7 +755,7 @@ def next(self):
755
755
@skip_wasi_stack_overflow ()
756
756
@skip_emscripten_stack_overflow ()
757
757
def test_ast_recursion_limit (self ):
758
- crash_depth = 300_000
758
+ crash_depth = 500_000
759
759
success_depth = 200
760
760
if _testinternalcapi is not None :
761
761
remaining = _testinternalcapi .get_c_recursion_remaining ()
Original file line number Diff line number Diff line change @@ -74,13 +74,13 @@ def test_highly_nested_objects_decoding(self):
74
74
# accelerations are used. See #12017
75
75
with self .assertRaises (RecursionError ):
76
76
with support .infinite_recursion ():
77
- self .loads ('{"a":' * 100000 + '1' + '}' * 100000 )
77
+ self .loads ('{"a":' * 200000 + '1' + '}' * 200000 )
78
78
with self .assertRaises (RecursionError ):
79
79
with support .infinite_recursion ():
80
- self .loads ('{"a":' * 100000 + '[1]' + '}' * 100000 )
80
+ self .loads ('{"a":' * 200000 + '[1]' + '}' * 200000 )
81
81
with self .assertRaises (RecursionError ):
82
82
with support .infinite_recursion ():
83
- self .loads ('[' * 100000 + '1' + ']' * 100000 )
83
+ self .loads ('[' * 200000 + '1' + ']' * 200000 )
84
84
85
85
@support .skip_wasi_stack_overflow ()
86
86
@support .skip_emscripten_stack_overflow ()
You can’t perform that action at this time.
0 commit comments