summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/builtin_compile.py
Commit message (Collapse)AuthorAge
* tests/basics: Add more tests for hashing of various types.Damien George2023-05-19
| | | | Signed-off-by: Damien George <damien@micropython.org>
* py/runtime: Fix builtin compile() in "single" mode so it prints exprs.Damien George2020-08-22
| | | | | | | | As per CPython behaviour, compile(stmt, "file", "single") should create code which prints to stdout (via __repl_print__) the results of any expressions in stmt. Signed-off-by: Damien George <damien@micropython.org>
* tests: Fix few test for proper "skipped" detection with qemu-arm's tinytest.Paul Sokolovsky2017-12-12
| | | | | | | | | "Builtin" tinytest-based testsuite as employed by qemu-arm (and now generalized by me to be reusable for other targets) performs simplified detection of skipped tests, it treats as such tests which raised SystemExit (instead of checking got "SKIP" output). Consequently, each "SKIP" must be accompanied by SystemExit (and conversely, SystemExit should not be used if test is not skipped, which so far seems to be true).
* tests: Add missing tests for builtins, and many other things.Damien George2015-04-04
|
* tests: Get builtin_compile to skin properly on pyboard.Damien George2014-10-26
|
* tests: Add test for compile builtin.Damien George2014-10-25