circuitpython/tests
Damien George 031278f661 unix: Allow to cat a script into stdin from the command line.
See issue #1306.
2015-06-04 23:42:45 +01:00
..
basics tests: Add further tests for class defining __hash__. 2015-05-12 23:08:18 +01:00
bench py: Use sequence of strings for named tuple initialization 2015-01-01 14:53:23 +02:00
bytecode unix-cpy: Fix adjustment of stack size when leaving exception handler. 2015-05-06 16:46:21 +01:00
cmdline unix: Add option to use uPy readline, and enable by default. 2015-05-27 15:59:43 +01:00
extmod extmod: Add ubinascii.unhexlify 2015-05-20 09:29:22 +01:00
float tests: Add some tests for printing floats to improve coverage. 2015-05-28 14:24:47 +00:00
import tests: Add another testcase for relative imports. 2015-02-16 12:11:41 +02:00
inlineasm py/inlinethumb: Support for core floating point instructions. 2015-04-19 15:47:05 +01:00
io tests: Add missing tests for builtins, and many other things. 2015-04-04 22:05:30 +01:00
micropython py: Implement native multiply operation in viper emitter. 2015-06-04 14:00:29 +00:00
misc tests: Add test for recursive iternext stack overflow. 2015-06-03 22:41:06 +01:00
pyb tests: Add tests to create valid and invalid UART, I2C, SPI, CAN busses. 2015-05-28 11:06:12 +01:00
pybnative
unicode tests: Add missing tests for builtins, and many other things. 2015-04-04 22:05:30 +01:00
unix tests: Add special tests to test mp_printf function to improve coverage. 2015-05-28 14:25:07 +00:00
README
pyboard.py
run-bench-tests
run-tests unix: Allow to cat a script into stdin from the command line. 2015-06-04 23:42:45 +01: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.