| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
It has reliability issues (cause unknown at this time).
|
|
Try to un-mount a file system and re-mount it again.
|
|
|
|
It has reliability issues and sometimes fails on Travis (reason currently
unknown).
|
|
Disable by default, enable in unix port.
|
|
|
|
It has reliability issues that need to be worked out.
|
|
|
|
These additional special methods are enabled on most ports so we can test
them in this test.
|
|
|
|
See issue #2264.
|
|
|
|
|
|
|
|
|
|
To use the actual current name.
|
|
Skip tests if not available.
|
|
|
|
|
|
|
|
|
|
|
|
Required to pass bytes_compare3.py (opptional warnings) on devices.
|
|
|
|
There's single str_index_to_ptr() function, called for both bytes and
unicode objects, so should handle each properly.
|
|
|
|
This may produce a warning, depending on MicroPython configuration.
|
|
|
|
|
|
They will fail because the GIL is disabled on the unix build.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Qstr code accesses global state and needs to be made thread safe.
|
|
Tests concurrent mutating access to: list, dict, set, bytearray.
|
|
|
|
|
|
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.
|
|
|
|
Includes functionality and stress tests.
|
|
|