Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
d70f87aa
Commit
d70f87aa
authored
Nov 21, 2016
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
tests/micropython: Add test for creating traceback without allocation.
parent
21d82421
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/micropython/heapalloc.py
+16
-1
16 additions, 1 deletion
tests/micropython/heapalloc.py
tests/micropython/heapalloc.py.exp
+3
-0
3 additions, 0 deletions
tests/micropython/heapalloc.py.exp
with
19 additions
and
1 deletion
tests/micropython/heapalloc.py
+
16
−
1
View file @
d70f87aa
# check that we can do certain things without allocating heap memory
import
micropython
import
sys
def
f1
(
a
):
print
(
a
)
...
...
@@ -17,8 +18,15 @@ def f3(a, b, c, d):
global_var
=
1
# preallocate exception instance with some room for a traceback
global_exc
=
StopIteration
()
try
:
raise
global_exc
except
:
pass
def
test
():
global
global_var
global
global_var
,
global_exc
global_var
=
2
# set an existing global variable
for
i
in
range
(
2
):
# for loop
f1
(
i
)
# function call
...
...
@@ -28,6 +36,13 @@ def test():
f2
(
i
,
i
)
# 2 args
f3
(
1
,
2
,
3
,
4
)
# function with lots of local state
# test that we can generate a traceback without allocating
global_exc
.
__traceback__
=
None
try
:
raise
global_exc
except
StopIteration
as
e
:
sys
.
print_exception
(
e
)
# call test() with heap allocation disabled
micropython
.
heap_lock
()
test
()
...
...
This diff is collapsed.
Click to expand it.
tests/micropython/heapalloc.py.exp
+
3
−
0
View file @
d70f87aa
...
...
@@ -9,3 +9,6 @@
1 2
1 1
1 2 3 4 10
Traceback (most recent call last):
File "micropython/heapalloc.py", line 42, in test
StopIteration:
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment