diff options
author | Damien George <damien.p.george@gmail.com> | 2016-10-11 11:01:22 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-10-11 11:01:22 +1100 |
commit | 7f0e563de3f02b26aa0ebf5dd62907d67b524a8e (patch) | |
tree | 3f73bfc4df05eba345077aafbef328b49a41bac9 | |
parent | 7dc2345715f6c0619e833661d709f6e4e550d7b5 (diff) | |
download | micropython-7f0e563de3f02b26aa0ebf5dd62907d67b524a8e.tar.gz micropython-7f0e563de3f02b26aa0ebf5dd62907d67b524a8e.zip |
tests/micropython: Add test for micropython.opt_level() function.
-rw-r--r-- | tests/micropython/opt_level.py | 14 | ||||
-rw-r--r-- | tests/micropython/opt_level.py.exp | 4 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/micropython/opt_level.py b/tests/micropython/opt_level.py new file mode 100644 index 0000000000..4e2f2f4ea3 --- /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') diff --git a/tests/micropython/opt_level.py.exp b/tests/micropython/opt_level.py.exp new file mode 100644 index 0000000000..74b3dd74e8 --- /dev/null +++ b/tests/micropython/opt_level.py.exp @@ -0,0 +1,4 @@ +0 +1 +True +False |