summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics
Commit message (Collapse)AuthorAge
* tests/basics: Improve runtime.c test coverage.Rami Ali2017-01-17
|
* tests: Update tests, and add new ones, for recent generator tweaks.Damien George2017-01-17
|
* tests: Update test suite to be compatible with CPython 3.6.Damien George2017-01-09
| | | | | | | | CPython 3.6 has a few changes that, when run on uPy's test suite, give a different output to CPython 3.5. uPy currently officially supports the 3.4 language definition, but it's useful to be able to run the test suite with 3.4/3.5/3.6 versions of CPython. This patch makes such changes to support 3.6.
* tests/array*: Allow to skip test if "array" is unavailable.Paul Sokolovsky2017-01-07
|
* tests/types1: Split out set type test to set_types.Paul Sokolovsky2017-01-06
| | | | set isn't the most basic type and can be disabled by a port.
* tests/run-tests: Allow to skip set tests.Paul Sokolovsky2017-01-05
| | | | | | If sets are not enabled, set literals lead to SyntaxError during parsing, so it requires feature_check. Set tests are skipped based on set_*.py pattern.
* tests/basics: Add tests to improve coverage of binary.c.Rami Ali2016-12-28
|
* tests/basics: Add tests for parsing of ints with base 36.Damien George2016-12-28
|
* tests/basics/lexer: Add a test for newline-escaping within a string.Damien George2016-12-22
|
* tests: Add tests to improve coverage of objarray.c.Rami Ali2016-12-21
|
* tests: Add tests to improve coverage of runtime.c.Rami Ali2016-12-21
|
* tests/basics: Improve test coverage for generators.Rami Ali2016-12-20
|
* tests/basics/set_pop: Improve coverage of set functions.Damien George2016-12-20
|
* tests/basics: Add test for builtin locals().Damien George2016-12-20
|
* tests/basics/builtin_dir: Add test for dir() of a type.Damien George2016-12-20
|
* tests/basics: Improve mpz test coverage.Rami Ali2016-12-20
|
* tests/struct*: Make skippable.Paul Sokolovsky2016-12-19
|
* tests: Update for required byteorder arg for int.from_bytes()/to_bytes().Paul Sokolovsky2016-12-09
|
* tests/basics: Enable tests for list slice getting with 3rd arg.Damien George2016-11-26
| | | | Also add a test to check case when 3rd arg is 0.
* tests/basics: Change dict_fromkeys test so it doesn't use generators.Damien George2016-11-26
| | | | And then it can run with the native emitter.
* tests/basics: Add tests for if-expressions.Damien George2016-11-26
|
* tests/basics: Add test for dict.fromkeys where arg is a generator.Damien George2016-11-26
| | | | | Improves coverage because it tests the case where the arg does not have a __len__ slot.
* tests/basics: Improve user class coverage.Rami Ali2016-11-22
|
* tests/basics: Add test for logical constant folding.Damien George2016-11-15
|
* py/sequence: Fix reverse slicing of lists.Fabio Utzig2016-10-30
|
* tests/basics/gc1: Garbage collector threshold() coverage.Alex March2016-10-27
|
* tests/basics: Add test for builtin "delattr".Damien George2016-10-24
|
* tests/basics/builtin_slice: Add test for "slice" builtin name.Damien George2016-10-24
|
* tests: Add test to print full KeyError exc from failed dict lookup.Damien George2016-10-17
|
* tests: Improve coverage of array, range, dict, slice, exc, unicode.Damien George2016-10-17
|
* tests: Improve test coverage of py/compile.c.Damien George2016-10-11
|
* tests: Improve coverage of struct with test for non-compliant behaviour.Damien George2016-10-07
|
* tests/basics: Add test for printing OSError when errno is unknown.Damien George2016-09-30
|
* tests/basics: Add test constructing a set from a non-trivial expression.Damien George2016-09-30
|
* tests/basics: Add further tests for nonlocal scoping and closures.Damien George2016-09-30
|
* py/compile: Fix async-for/async-with to work with simpler exc on stack.Damien George2016-09-28
| | | | | There is now just the exception instance on the stack when an exception is raised, not the full (type, exc, traceback).
* tests/basics: Add test for set.difference_update with arg being itself.Damien George2016-09-28
|
* py/objset: Ensure that use of frozenset.update raises an exception.Damien George2016-09-28
|
* tests/basics: Add test case for overflowing Py stack in try-finally.Damien George2016-09-27
|
* tests/array1: Add tests for "l", "L" array types to improve coverage.Paul Sokolovsky2016-09-19
|
* tests/struct1: Test "l" specifier to improve coverage.Paul Sokolovsky2016-09-19
|
* tests/basics: Add errno1 test, to check basics of uerrno module.Damien George2016-09-16
|
* tests/basics/special_methods: Enable tests for extra special methods.Damien George2016-08-17
| | | | | These additional special methods are enabled on most ports so we can test them in this test.
* tests/basics: Add a test file for overriding special methods.rguillon2016-08-17
|
* py/sequence: Allow to use bignums as indices in slice objects.Damien George2016-08-15
| | | | See issue #2264.
* tests/basics: Add test for break from within try within a for-loop.Damien George2016-08-15
|
* tests/basics: Add more list tests to improve coverage testing.Damien George2016-08-15
|
* tests/basics: Add more tuple tests to improve coverage testing.Damien George2016-08-15
|
* tests/basics: bytes/str.partition/rpartition are now optional.Paul Sokolovsky2016-08-07
| | | | Skip tests if not available.
* py/objstrunicode: str_index_to_ptr: Should handle bytes too.Paul Sokolovsky2016-07-25
| | | | | There's single str_index_to_ptr() function, called for both bytes and unicode objects, so should handle each properly.