summaryrefslogtreecommitdiffstatshomepage
path: root/tests
Commit message (Collapse)AuthorAge
* py: Allow retrieving a function's __name__.stijn2015-03-20
| | | | Disabled by default. Enabled on unix and stmhal ports.
* tests: Adjust expected output, since Travis can't do git describe.Damien George2015-03-20
|
* tests: Add basic test for OrderedDict.Paul Sokolovsky2015-03-20
| | | | Mostly to have coverage of newly added code in map.c.
* tests: Make cmdline tests more stable by using regex for matching.Damien George2015-03-20
|
* tests: Add some more tests for complex numbers and ure module.Damien George2015-03-14
|
* py: Fix builtin abs so it works for bools and bignum.Damien George2015-03-14
|
* tests: Add some more tests for bytes, bignum, string and ujson.Damien George2015-03-14
|
* tests: Don't try to verify amount of memory used in cmd_showbc test.Damien George2015-03-14
|
* tests: Add cmdline test to test showbc code.Damien George2015-03-14
|
* stmhal: Fix adc.read_timed so buffer store respects element size.Damien George2015-03-13
| | | | Addresses issue #1154.
* tests: Add ability to test uPy cmdline executable.Damien George2015-03-13
| | | | | This allows to test options passed to cmdline executable, as well as the behaviour of the REPL.
* tests: Add tests for things that are not already tested.Damien George2015-03-12
| | | | The aim here is to improve coverage of the code.
* tests: Add zlib test for decompressing uncompressed data.Damien George2015-03-12
|
* py: Add support for start/stop/step attributes of builtin range object.Peter D. Gray2015-03-11
|
* tests: Add test for modure when regex has errors.Damien George2015-03-10
|
* extmod/ure: Correctly return None when a group has no match.Damien George2015-03-04
| | | | See issue #1122.
* tests: Skip basics/boundmeth1.py for native emitter.Damien George2015-03-03
|
* tests: Add tests for boundmeth; and bignum cmp, unary, float, error.Damien George2015-03-03
|
* tests: Skip special math fun tests when math module exists but not funs.stijn2015-03-03
|
* tests: Add basics test for gc module.Damien George2015-03-02
|
* tests: Use range as iterable instead of list comprehension.Damien George2015-03-02
| | | | | So that navite emitter passes (comprehensions use yield which is not yet supported by native emitter).
* tests: Add tests for builtins: all, any, sum, abs.Damien George2015-03-02
|
* tests: Add tests for inline assembler beq_n and beq_w ops.Damien George2015-03-02
|
* tests: Add tests for op special meths, ubinascii, complex.Damien George2015-03-02
|
* tests: Add test for micropython const feature when it has a SyntaxError.Damien George2015-03-01
|
* tests: Add test for array slice assignment.Paul Sokolovsky2015-02-27
|
* tests: Update pyb/uart.py test since baudrate of 1200 is too low.Damien George2015-02-27
|
* py: Fix adding of traceback so that it appends to existing info.Damien George2015-02-27
| | | | | | | | This makes exception traceback info self contained (ie doesn't rely on list object, which was a bit of a hack), reduces code size, and reduces RAM footprint of exception by eliminating the list object. Addresses part of issue #1126.
* tests: Add more tests for pyb.Timer class.Damien George2015-02-23
|
* tests: Add test for math special functions.Damien George2015-02-22
|
* tests: Add tests for ure groups and named char classes.Damien George2015-02-21
| | | | Issue #1122 should now be fixed.
* run-tests-exp.sh: Typo fix in comment.Paul Sokolovsky2015-02-21
|
* py: Implement bl/bx instructions for inline Thumb assembler.Damien George2015-02-16
|
* tests: Add another testcase for relative imports.Paul Sokolovsky2015-02-16
|
* stmhal: Add support for CAN rx callbacks.Henrik Sölver2015-02-15
|
* tests: Remove obsolete test; don't use fp in micropython/ tests.Damien George2015-02-15
|
* py: Simplify and remove redundant code for __iter__ method lookup.Damien George2015-02-15
|
* py: Fix loading of immediate pointer in Thumb assembler.Damien George2015-02-15
| | | | Addresses issue #1117.
* py: Add setattr builtin.stijn2015-02-14
|
* stmhal: Add uart.sendbreak() method, to send a break condition.Damien George2015-02-13
|
* py: Implement clz and rbit for inline Thumb assembler.Damien George2015-02-13
|
* py: Implement sdiv/udiv for inline Thumb assembler.Damien George2015-02-13
|
* py: Implement push/pop for inline Thumb assembler.Damien George2015-02-13
|
* py: Allow subclass of native object to delegate to the native buffer_p.Damien George2015-02-09
| | | | Addresses issue #1109.
* objstr: Fix bytes creation from array of long ints.Paul Sokolovsky2015-02-09
|
* py: Parse big-int/float/imag constants directly in parser.Damien George2015-02-08
| | | | | | | | | Previous to this patch, a big-int, float or imag constant was interned (made into a qstr) and then parsed at runtime to create an object each time it was needed. This is wasteful in RAM and not efficient. Now, these constants are parsed straight away in the parser and turned into objects. This allows constants with large numbers of digits (so addresses issue #1103) and takes us a step closer to #722.
* extmod: Make ujson.loads raise exception if given empty string.Damien George2015-02-02
| | | | Addresses issue #1097.
* tests: Disable float/cmath_fun.py for native emitter.Damien George2015-02-02
|
* py: Make list.sort keep stack usage within O(log(N)) bound.Damien George2015-02-02
| | | | | | | Also fix list.sort so it works with user-defined types, and parse the keyword arguments properly. Addresses issue #338.
* tests: Add test for cmath module.Damien George2015-02-02
|