tests/basics/fun_callstardblstar: Add test for large arg allocation.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2022-04-01 00:21:58 +11:00
parent 40f5c743db
commit 1dbf393962
1 changed files with 3 additions and 0 deletions

View File

@ -34,3 +34,6 @@ def f2(*args, **kwargs):
f2(*iter(range(4)), **{'a': 1})
# case where *args is not a tuple/list and takes up most of the memory allocated for **kwargs
f2(*iter(range(100)), **{str(i): i for i in range(100)})