2013-12-29 13:21:02 -05:00
|
|
|
This directory contains the framework and test files for testing the byte code
|
|
|
|
output of the Micro Python compiler.
|
|
|
|
|
|
|
|
You need to first build the 'cpy' executable in the directory micropython/unix-cpy/.
|
|
|
|
This executable is a minimal version of Micro Python which compiles a single source
|
|
|
|
file and outputs the corresponding byte code.
|
|
|
|
|
2014-04-16 15:14:38 -04:00
|
|
|
The output of Micro Python is checked against CPython 3.4.
|
2013-12-29 13:21:02 -05:00
|
|
|
|
|
|
|
To run the tests use:
|
|
|
|
|
|
|
|
./run-tests
|
2014-01-02 11:14:19 -05:00
|
|
|
|
|
|
|
Note that the tests in pylib-test/ are from the Python 3.3 library, and are licensed
|
|
|
|
under the relevant license, as per pylib-test/LICENSE.txt.
|