diff options
author | Damien George <damien@micropython.org> | 2022-04-11 23:34:37 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-04-15 00:17:02 +1000 |
commit | 865b61dac205fe10150e8c4a38411470b4eb82f4 (patch) | |
tree | fb35498c8e0d00a457b789779ab2224ef20a8d78 /tests/micropython/heapalloc.py.exp | |
parent | 07f526067e207f23529b4f2234baffd74ce1f35c (diff) |
tests/micropython: Add tests that const tuples don't use the heap.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/micropython/heapalloc.py.exp')
-rw-r--r-- | tests/micropython/heapalloc.py.exp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/micropython/heapalloc.py.exp b/tests/micropython/heapalloc.py.exp index c8cffe183..b8580edc6 100644 --- a/tests/micropython/heapalloc.py.exp +++ b/tests/micropython/heapalloc.py.exp @@ -8,4 +8,8 @@ 1 1 2 1 1 +(1, 'two', (b'three',)) 1 2 3 4 10 +1 +two +(True, b'bytes', ()) |