diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-12-11 11:56:20 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-12-11 12:00:41 +0200 |
commit | e02cb9ec318580497dbb17f369a61d9e932094e5 (patch) | |
tree | 3a280551b559fb153f3d28ac978442b4ef20e655 /tests/micropython/heapalloc_traceback.py.exp | |
parent | 30fd8484ebe41faad467fbc8dd4a6f72250f203c (diff) |
tests/heapalloc_*: Refactor some tests to work in strict stackless mode.
In strict stackless mode, it's not possible to make a function call with
heap locked (because function activation record aka frame is allocated on
heap). So, if the only purpose of function is to introduce local variable
scope, move heap lock/unlock calls inside the function.
Diffstat (limited to 'tests/micropython/heapalloc_traceback.py.exp')
-rw-r--r-- | tests/micropython/heapalloc_traceback.py.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/micropython/heapalloc_traceback.py.exp b/tests/micropython/heapalloc_traceback.py.exp index 291bbd697..facd0af13 100644 --- a/tests/micropython/heapalloc_traceback.py.exp +++ b/tests/micropython/heapalloc_traceback.py.exp @@ -1,5 +1,5 @@ StopIteration Traceback (most recent call last): - File , line 22, in test + File , line 23, in test StopIteration: |