aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2016-09-08tests/run-tests: Disable thread/stress_recurse.py test on Travis.Damien George
It has reliability issues (cause unknown at this time).
2016-09-05tests/extmod/framebuf1: Add tests for scrolling in the x-direction.Damien George
2016-09-04tests/extmod/uzlib_decompio: Add zlib bitstream testcases.Paul Sokolovsky
2016-09-04tests/extmod: Add a test for framebuf module, tested by coverage build.Damien George
2016-09-03tests/extmod: Add test for uzlib.DecompIO.Paul Sokolovsky
2016-09-02tests/unix/extra_coverage: Add test for str/bytes with invalid hash.Damien George
2016-09-01py/mpprint: Fail an assertion with unsupported format specifiers.Delio Brignoli
Arguments of an unknown type cannot be skipped and continuing to parse a format string after encountering an unknown format specifier leads to undefined behaviour. This patch helps to find use of unsupported formats.
2016-08-27tests/run-tests: Disable thread_gc1.py test on Travis.Damien George
It has reliability issues (cause unknown at this time).
2016-08-26tests/extmod/vfs_fat_ramdisk: Add tests for VFS.umount()Radomir Dopieralski
Try to un-mount a file system and re-mount it again.
2016-08-26tests/cmdline: Add test for -O option to check optimisation value.Damien George
2016-08-25tests/run-tests: Disable thread/stress_heap.py when running on Travis.Damien George
It has reliability issues and sometimes fails on Travis (reason currently unknown).
2016-08-24extmod/modubinascii: Make crc32() support configurable.Paul Sokolovsky
Disable by default, enable in unix port.
2016-08-24extmod/modubinascii: implement binascii.crc32Pavol Rusnak
2016-08-17tests/run-tests: Disable thread/thread_lock4.py on Travis.Damien George
It has reliability issues that need to be worked out.
2016-08-17tests/uzlib_decompress: Actually test raw DEFLATE stream.Paul Sokolovsky
2016-08-17tests/basics/special_methods: Enable tests for extra special methods.Damien George
These additional special methods are enabled on most ports so we can test them in this test.
2016-08-17tests/basics: Add a test file for overriding special methods.rguillon
2016-08-15py/sequence: Allow to use bignums as indices in slice objects.Damien George
See issue #2264.
2016-08-15tests/basics: Add test for break from within try within a for-loop.Damien George
2016-08-15tests/misc/non_compliant: Add tests to improve coverage testing.Damien George
2016-08-15tests/basics: Add more list tests to improve coverage testing.Damien George
2016-08-15tests/basics: Add more tuple tests to improve coverage testing.Damien George
2016-08-12tests: Rename zlibd_decompress.py -> uzlib_decompress.py.Paul Sokolovsky
To use the actual current name.
2016-08-07tests/basics: bytes/str.partition/rpartition are now optional.Paul Sokolovsky
Skip tests if not available.
2016-08-02extmod/modbtree: Implement __contains__ operation.Paul Sokolovsky
2016-07-31tests/machine1: Revamp to work with unix port (which has "umachine").Paul Sokolovsky
2016-07-31tests/machine_mem.py: Too non-portable, rework as an example for unix port.Paul Sokolovsky
2016-07-31tests/extmod/btree1: Tests against in-memory DB (using io.BytesIO).Paul Sokolovsky
2016-07-29tests/io/bytesio_ext: Test for .seek()/.flush() on BytesIO.Paul Sokolovsky
2016-07-26tests/run-tests: Make "regex'ed .exp" facility available to device tests.Paul Sokolovsky
Required to pass bytes_compare3.py (opptional warnings) on devices.
2016-07-25tests/unicode_subscr.py: Detailed test for subscripting unicode strings.Paul Sokolovsky
2016-07-25py/objstrunicode: str_index_to_ptr: Should handle bytes too.Paul Sokolovsky
There's single str_index_to_ptr() function, called for both bytes and unicode objects, so should handle each properly.
2016-07-24tests/extmod/btree1: Close database at the end of test.Paul Sokolovsky
2016-07-22tests/bytes_compare: Rework test for bytes <-> str comparison.Paul Sokolovsky
This may produce a warning, depending on MicroPython configuration.
2016-07-17tests/extmod/machine_pinbase: Skip if machine.PinBase is not available.Paul Sokolovsky
2016-07-14tests: Add test for extended arguments to stream .write() method.Paul Sokolovsky
2016-07-09tests/run-tests: If running thread tests on unix, don't run mutate ones.Damien George
They will fail because the GIL is disabled on the unix build.
2016-07-01tests/meminfo: Update for addition of "max free sz" output.Paul Sokolovsky
2016-06-28tests/thread: Allow some tests to run on ports with not much heap.Damien George
2016-06-28tests/thread: Allow thread_sleep1 to run without floating point.Damien George
2016-06-28tests/thread: Make sure that thread tests don't rely on floating point.Damien George
2016-06-28tests/thread: Make stack-size test run correctly and reliable on uPy.Damien George
2016-06-28tests/thread: Add test for concurrent mutating of user instance.Damien George
2016-06-28tests/thread: Add test for concurrent interning of strings.Damien George
Qstr code accesses global state and needs to be made thread safe.
2016-06-28tests/thread: Add tests that mutate shared objects.Damien George
Tests concurrent mutating access to: list, dict, set, bytearray.
2016-06-28tests/thread: Rename thread_stress_XXX.py to stress_XXX.py.Damien George
2016-06-28tests/thread: Add tests for running GC within a thread, and heap stress.Damien George
2016-06-28tests/thread: Remove need to sleep to wait for completion in some tests.Damien George
Use a lock and a counter instead, and busy wait for all threads to complete. This makes test run faster and they no longer rely on the time module.
2016-06-28tests: Add 3 more tests for _thread module.Damien George
2016-06-28tests: Add tests for _thread module.Damien George
Includes functionality and stress tests.