micropython/tests
Damien George 081f9325f5 py/lexer: Raise NotImplError for unicode name escape, instead of assert. 2015-09-07 17:08:49 +01:00
..
basics py/compile: Refine SyntaxError for repeated use of global/nonlocal. 2015-09-07 16:55:02 +01:00
bench
cmdline tests: Consolidate all feature check snippets under feature_check/. 2015-08-30 11:36:42 +03:00
extmod tests: Add tests to improve coverage of objstr.c. 2015-09-03 23:06:18 +01:00
feature_check tests: Consolidate all feature check snippets under feature_check/. 2015-08-30 11:36:42 +03:00
float tests: Add a few tests for bool, bytearray, float to improve coverage. 2015-08-29 23:13:28 +01:00
import tests: Add test for relative import without package context. 2015-06-27 00:40:22 +03:00
inlineasm
io tests: Make io test cleanup after itself by removing 'testfile'. 2015-08-21 08:45:52 +01:00
micropython tests: Consolidate all feature check snippets under feature_check/. 2015-08-30 11:36:42 +03:00
misc py/lexer: Raise NotImplError for unicode name escape, instead of assert. 2015-09-07 17:08:49 +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/objstr: Make string formatting 8-bit clean. 2015-08-29 23:13:51 +01:00
unix tests: Add tests to improve coverage of objstr.c. 2015-09-03 23:06:18 +01:00
README
pyboard.py
run-bench-tests
run-tests tests: Skip exception_chain.py with native emitter. 2015-09-01 11:53:27 +03:00
run-tests-exp.py
run-tests-exp.sh

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.