aboutsummaryrefslogtreecommitdiff
path: root/tests/micropython
AgeCommit message (Expand)Author
2017-03-07tests/micropython/: Split off intbig tests.Paul Sokolovsky
2017-02-24tests/micropython: Add test for consts that are bignums.Damien George
2017-02-20tests/heapalloc_exc_raise.py: Heap alloc test for raising/catching exc.Paul Sokolovsky
2017-02-16tests/micropython/heapalloc_iter: Add tests for contains and unpack.Damien George
2017-02-16tests/micropython: Add test for iterating with the heap locked.Damien George
2017-02-02tests/heapalloc_bytesio: Test for BytesIO with preallocates space.Paul Sokolovsky
2017-01-27tests/heapalloc_str: Test for alloc-free string operations.Paul Sokolovsky
2017-01-21tests/heapalloc_int_from_bytes: Test that int.from_bytes() can work w/o alloc.Paul Sokolovsky
2017-01-19tests/micropython/opt_level: Add test for opt_level 3.Damien George
2016-12-28tests/micropython: Add test for micropython.stack_use() function.Rami Ali
2016-12-25tests/heapalloc_inst_call: Test for no alloc for simple object calls.Paul Sokolovsky
2016-12-15tests/micropython: Get heapalloc_traceback test running on baremetal.Damien George
2016-11-21tests/micropython: Move alloc-less traceback test to separate test file.Damien George
2016-11-21tests/micropython: Add test for creating traceback without allocation.Damien George
2016-11-10tests/micropython: Add test for import from within viper function.Damien George
2016-10-14tests/micropython: Add tests for heap_lock, and emergency exceptions.Damien George
2016-10-11tests: Improve test coverage of py/compile.c.Damien George
2016-10-11tests/micropython: Add test for micropython.opt_level() function.Damien George
2016-09-27py/modmicropython: Add micropython.const, alias for identity function.Damien George
2016-09-27tests/micropython: Add tests for const names being replaced in parser.Damien George
2016-07-01tests/meminfo: Update for addition of "max free sz" output.Paul Sokolovsky
2016-06-06py/parse: Treat constants that start with underscore as private.Damien George
2016-02-09py/viper: Allow casting of Python integers to viper pointers.Damien George
2015-10-13tests: Add more tests for viper 16/32-bit load/store, and ellipsis.Damien George
2015-10-13py: Implement ptr32 load and store in viper emitter.Damien George
2015-10-08py/emitnative: Raise ViperTypeError for unsupported unary ops.Damien George
2015-08-30tests: Consolidate all feature check snippets under feature_check/.Paul Sokolovsky
2015-07-23py: Allow viper functions to take up to 4 arguments.Damien George
2015-06-08py: Fallback to stack alloca for Python-stack if heap alloc fails.Damien George
2015-06-04py: Implement native multiply operation in viper emitter.Damien George
2015-06-04py: Implement implicit cast to obj for viper load/store index/value.Damien George
2015-04-22tests: Add more tests for viper, including tests for ViperTypeError's.Damien George
2015-04-16py: Add %q format support to mp_[v]printf, and use it.Damien George
2015-04-04tests: Add missing tests for builtins, and many other things.Damien George
2015-04-03tests: Add specific test for closures in native emitter.Damien George
2015-03-25tests: Add tests for SyntaxError, TypeError, and other missing things.Damien George
2015-03-12tests: Add tests for things that are not already tested.Damien George
2015-03-01tests: Add test for micropython const feature when it has a SyntaxError.Damien George
2015-02-15tests: Remove obsolete test; don't use fp in micropython/ tests.Damien George
2015-02-15py: Fix loading of immediate pointer in Thumb assembler.Damien George
2014-12-14asmarm: Fix bug with encoding small negative ints using MVN instruction.Paul Sokolovsky
2014-10-31tests: Add heapalloc.py.exp, since CPython can't generate it.Damien George
2014-10-31py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George
2014-10-22py: Remove unused and unneeded SystemError exception.Damien George
2014-10-19py: Partially fix viper multi-comparison; add test for it.Damien George
2014-10-12py: Implement native load for viper.Damien George
2014-10-12py: Implement and,or,xor native ops for viper.Damien George
2014-10-05tests: Add check for micropython.native and then skip relevant tests.Damien George
2014-09-29py: Fix viper store on x86; add tests for viper ptr16.Damien George
2014-09-29py: Add casting to viper; add native mem stores to viper.Damien George