micropython/tests
Paul Sokolovsky a488c266c3 tests: Add byteorder query script. 2015-08-30 01:04:04 +03:00
..
basics tests: Split byteorder-dependent tests to *_endian.py's. 2015-08-30 00:38:00 +03:00
bench
cmdline tests: Remove over-specification of startup banner 2015-08-08 12:37:36 +01:00
extmod modmachine: Implement physical memory access using /dev/mem (Linux, etc). 2015-07-08 11:37:23 +03:00
float tests: Add more tests to improve coverage, mostly testing exceptions. 2015-08-21 12:02:09 +01:00
import tests: Add test for relative import without package context. 2015-06-27 00:40:22 +03:00
inlineasm py/inlinethumb: Support for core floating point instructions. 2015-04-19 15:47:05 +01:00
io tests: Make io test cleanup after itself by removing 'testfile'. 2015-08-21 08:45:52 +01:00
micropython py: Allow viper functions to take up to 4 arguments. 2015-07-23 14:11:29 +01:00
misc tests: Adapt misc/features.py tests for ports without floating point. 2015-06-24 17:53:29 +01:00
pyb tests: Add test for pyboard SPI in slave mode, recv with no master. 2015-08-05 23:47:57 +01:00
pybnative
unicode py: Support unicode (utf-8 encoded) identifiers in Python source. 2015-06-09 10:58:07 +00:00
unix tests/ffi_float: Split tgammaf() testcase to a separate test. 2015-08-29 17:24:29 +03:00
README
byteorder.py tests: Add byteorder query script. 2015-08-30 01:04:04 +03:00
pyboard.py
run-bench-tests
run-tests run-tests: Allow to skip byteorder-dependent tests. 2015-08-30 00:37:53 +03:00
run-tests-exp.py
run-tests-exp.sh run-tests-exp.sh: Typo fix in comment. 2015-02-21 03:22:33 +02: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.