diff options
Diffstat (limited to 'tests/micropython/opt_level.py')
-rw-r--r-- | tests/micropython/opt_level.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/micropython/opt_level.py b/tests/micropython/opt_level.py new file mode 100644 index 000000000..4e2f2f4ea --- /dev/null +++ b/tests/micropython/opt_level.py @@ -0,0 +1,14 @@ +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') |