summaryrefslogtreecommitdiff
path: root/tests/extmod/vfs_fat_finaliser.py
AgeCommit message (Collapse)Author
2024-02-07tests: Use vfs module instead of os.Damien George
Signed-off-by: Damien George <damien@micropython.org>
2023-09-29tests/extmod/vfs_fat_finaliser.py: Tweak test so files are collected.Damien George
Signed-off-by: Damien George <damien@micropython.org>
2023-06-08tests: Replace umodule with module everywhere.Jim Mussared
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2022-02-12tests/extmod/vfs_fat_finaliser.py: Make finalisation more robust.Damien George
Signed-off-by: Damien George <damien@micropython.org>
2021-08-17tests/extmod/vfs_fat_finaliser.py: Ensure alloc at never-used GC blocks.Jim Mussared
Prevents the finaliser from being missed if there's a dangling reference on the stack to one of the blocks for the files (that this test checks that they get finalised). See github.com/micropython/micropython/pull/7659#issuecomment-899479793 Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2020-03-30tests: Format all Python code with black, except tests in basics subdir.David Lechner
This adds the Python files in the tests/ directory to be formatted with ./tools/codeformat.py. The basics/ subdirectory is excluded for now so we aren't changing too much at once. In a few places `# fmt: off`/`# fmt: on` was used where the code had special formatting for readability or where the test was actually testing the specific formatting.
2019-12-27tests/extmod: Split out VfsFat finaliser tests to separate test file.Damien George
It tests independent functionality and may need to be skipped for a given port.