summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2018-03-16tests/pyb: Update CAN test to expect that auto_restart is printed.Damien George
2018-03-15tests/cpydiff: Indent workaround code snippet so it formats correctly.Damien George
2018-03-12extmod/vfs_fat: Add file size as 4th element of uos.ilistdir tuple.Tom Collins
2018-03-08tests/basics/builtin_enumerate: Add test for many pos args to enumerate.Damien George
2018-03-04tests/extmod/time_ms_us: Fix ticks tests, ticks_diff args are reversed.Damien George
2018-03-04tests/extmod/time_ms_us: Add test for calling ticks_cpu().Damien George
2018-03-03tests/unix: Add coverage test for uio.resource_stream from frozen str.Damien George
2018-03-02tests: Move heap-realloc-while-locked test from C to Python.Damien George
2018-03-01tests/unix: Add coverage tests for various GC calls.Damien George
2018-03-01py/formatfloat: Fix case where floats could render with negative digits.Damien George
2018-03-01py/formatfloat: Fix case where floats could render with a ":" character.Damien George
2018-03-01py/formatfloat: Fix rounding of %f format with edge-case FP values.Damien George
2018-02-28tests/extmod/vfs_fat_fileio1: Add test for calling file obj finaliser.Damien George
2018-02-27tests/basics/gc1: Add test which triggers GC threshold.Damien George
2018-02-27tests/unix: Add coverage test for VM executing invalid bytecode.Damien George
2018-02-27py/vm: Fix case of handling raised StopIteration within yield from.Damien George
2018-02-26tests/float: Adjust float-parsing tests to pass with only a small error.Damien George
2018-02-26tests/extmod/uzlib_decompress: Add uzlib tests to improve coverage.Damien George
2018-02-26tests/extmod/vfs_fat_fileio1: Add test for failing alloc with finaliser.Damien George
2018-02-25tests/unix: Add coverage tests for mpz_set_from_float, mpz_mul_inpl.Damien George
2018-02-24tests/stress: Add test to create a dict beyond "maximum" rehash size.Damien George
2018-02-24tests/basics: Add test for calling a subclass of a native class.Damien George
2018-02-21py/objdeque: Protect against negative maxlen in deque constructor.Damien George
2018-02-21tests/basics: Add tests to improve coverage of py/objdeque.c.Damien George
2018-02-21tests/basics/deque*: Tests for ucollections.deque.Paul Sokolovsky
2018-02-19py/objstr: Protect against creating bytes(n) with n negative.Damien George
2018-02-19py/repl: Generalise REPL autocomplete to use qstr probing.Damien George
2018-02-19py/modbuiltins: Simplify and generalise dir() by probing qstrs.Damien George
2018-02-18py/objdict: Disallow possible modifications to fixed dicts.Mike Wadsten
2018-02-15extmod/modujson: Implement ujson.dump() function.Damien George
2018-02-14py/objrange: Implement (in)equality comparison between range objects.Damien George
2018-02-14tests/run-tests: Capture any output from a crashed uPy execution.Damien George
2018-02-14tests: Rewrite some tests so they can run without needing eval/exec.Damien George
2018-02-14tests: Automatically skip tests that require eval, exec or frozenset.Damien George
2018-02-08py/objfloat: Fix case of raising 0 to -infinity.Damien George
2018-02-08py/parsenum: Fix parsing of floats that are close to subnormal.Damien George
2018-02-08tests/unix: Add coverage test for calling mp_obj_new_bytearray.Damien George
2018-02-07tests/basics: Rename remaining tests that are for built-in functions.Damien George
2018-02-07py/objtype: Check and prevent delete/store on a fixed locals map.Damien George
2018-01-31extmod/vfs_fat_file: Implement SEEK_CUR for non-zero offset.Ayke van Laethem
2017-12-20tests/basics/memoryerror: Add test for out-of-memory using realloc.Damien George
2017-12-19tests/extmod: Add some uctypes tests to improve coverage of that module.Damien George
2017-12-19tests: Add some more tests to improve coverage of py/parse.c.Damien George
2017-12-19tests/basics/builtin_pow3: Add tests for edge cases of pow3.Damien George
2017-12-19tests/basics/generator_pend_throw: Add test for just-started generator.Damien George
2017-12-19tests/unix: Add test for printf with %lx format.Damien George
2017-12-19tests/float/builtin_float_hash: Add test to improve objfloat.c coverage.Damien George
2017-12-19tests/extmod/uhashlib_sha256: Add test for hashing 56 bytes of data.Damien George
2017-12-19tests/basics: Add more set tests to improve coverage of py/objset.c.Damien George
2017-12-15py/objgenerator: Allow to pend an exception for next execution.Paul Sokolovsky