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

pull/2494/merge
Damien George 2016-10-11 11:01:22 +11:00
rodzic 7dc2345715
commit 7f0e563de3
2 zmienionych plików z 18 dodań i 0 usunięć

Wyświetl plik

@ -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')

Wyświetl plik

@ -0,0 +1,4 @@
0
1
True
False