micropython/tests
Paul Sokolovsky 16ac4962ae tests: Add test for catching infinite function recursion.
Put into misc/ to not complicate life for builds with check disabled.
2014-06-27 00:03:56 +03:00
..
basics modstruct: Fix alignment handling issues. 2014-06-25 23:34:44 +03:00
bench bench: Three ways to process a byte buffer. 2014-06-19 22:27:13 +03:00
bytecode
float tests/float/: Skip tests if "math" module is not available. 2014-06-20 18:00:23 +03:00
import
inlineasm
io py: Rename builtin "io" to "_io". 2014-06-12 01:22:25 +03:00
micropython
misc tests: Add test for catching infinite function recursion. 2014-06-27 00:03:56 +03:00
pyb
pybnative
README
pyboard.py
run-bench-tests
run-tests tests: Run 'micropython' tests on pyboard. 2014-06-08 13:46:03 +01:00

README

This directory contains tests for various functionality areas of MicroPython.
To run all stable tests, run "run-tests" script in this directory. Note
that bytecode tests are not yet stable and should be run separately in
"bytecode" subdirectory.

When creating new tests, anything that relies on float support should go in the 
float/ subdirectory.  Anything that relies on import x, where x is not a built-in
module, should go in the import/ subdirectory.