diff options
author | Damien George <damien@micropython.org> | 2022-05-04 12:12:11 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-05-05 10:31:50 +1000 |
commit | fca5701f74b784834d1af22d10988a1d0fddddaf (patch) | |
tree | f98c1d6c9e1473a13455857af0563760abcd08ec /tests | |
parent | 965747bd97183a85db56e8d79c15c589df87cdd6 (diff) | |
download | micropython-fca5701f74b784834d1af22d10988a1d0fddddaf.tar.gz micropython-fca5701f74b784834d1af22d10988a1d0fddddaf.zip |
py/malloc: Introduce m_tracked_calloc, m_tracked_free functions.
Enabled by MICROPY_TRACKED_ALLOC.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unix/extra_coverage.py.exp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/unix/extra_coverage.py.exp b/tests/unix/extra_coverage.py.exp index f6681f4ac1..4d6e1e0856 100644 --- a/tests/unix/extra_coverage.py.exp +++ b/tests/unix/extra_coverage.py.exp @@ -17,6 +17,25 @@ abc # GC 0 0 +# tracked allocation +m_tracked_head = 0 +0 1 +1 1 +2 1 +3 1 +4 1 +5 1 +6 1 +7 1 +0 1 +1 1 +2 1 +3 1 +4 1 +5 1 +6 1 +7 1 +m_tracked_head = 0 # vstr tests sts |