Skip to content
Snippets Groups Projects
Commit 7f0e563d authored by Damien George's avatar Damien George
Browse files

tests/micropython: Add test for micropython.opt_level() function.

parent 7dc23457
No related branches found
No related tags found
No related merge requests found
import micropython as micropython
# check we can get and set the level
micropython.opt_level(0)
print(micropython.opt_level())
micropython.opt_level(1)
print(micropython.opt_level())
# check that the optimisation levels actually differ
micropython.opt_level(0)
exec('print(__debug__)')
micropython.opt_level(1)
exec('print(__debug__)')
exec('assert 0')
0
1
True
False
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment