micropython/tests
Damien George 47b9809d23 py: Check that arg to object.__new__ is a user-defined type.
Addresses issue #1203.
2015-05-04 11:08:40 +01:00
..
basics py: Check that arg to object.__new__ is a user-defined type. 2015-05-04 11:08:40 +01:00
bench
bytecode
cmdline py: Modify bytecode "with" behaviour so it doesn't use any heap. 2015-04-24 01:52:28 +01:00
extmod tests: Add some more tests to improve code coverage of corner cases. 2015-04-05 00:03:43 +01:00
float py: Fix printing of "inf" and "nan" floating point values. 2015-04-22 16:51:29 +01:00
import
inlineasm py/inlinethumb: Support for core floating point instructions. 2015-04-19 15:47:05 +01:00
io
micropython tests: Add more tests for viper, including tests for ViperTypeError's. 2015-04-22 23:18:28 +01:00
misc vm: On exiting except block, clear sys.exc_info() value. 2015-04-26 01:40:37 +03:00
pyb stmhal: Add support for sending and receiving CAN RTR messages. 2015-04-18 14:53:00 +01:00
pybnative
unicode
unix unix/modffi: Support passing float/double args. 2015-04-28 19:40:34 +01:00
README
pyboard.py
run-bench-tests
run-tests modsys: Add basic sys.exc_info() implementation. 2015-04-25 03:49:23 +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.