aboutsummaryrefslogtreecommitdiff
path: root/tests/extmod/vfs_fat_oldproto.py
AgeCommit message (Collapse)Author
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.
2018-06-06tests/extmod: Remove conditional import of uos_vfs, it no longer exists.Damien George
This conditional import was only used to get the tests working on the unix coverage build, which has now switched to use VFS by default so the uos module alone has the required functionality.
2017-06-10tests: Convert remaining "sys.exit()" to "raise SystemExit".Paul Sokolovsky
2017-05-10tests/extmod/vfs: Update tests to reflect new ilistdir() method.Damien George
2017-02-15tests/extmod: Make tests skippable.Paul Sokolovsky
2017-01-27tests/extmod/vfs_fat: Update tests to work with new VFS sub-system.Damien George
The vfs_fat_fsusermount test is no longer relevant so has been removed.
2017-01-27test/extmod: Update vfs_fat tests for new OO FatFs library.Damien George
The new version of FatFs requires a minimum of 50 blocks on the device. Also, some tests no longer make sense with an OO vfs.
2016-11-06tests/vfs_fat_oldproto: Skip for ports not supporting "oldproto".Paul Sokolovsky
Otherwise this broke esp8266 testsuite.
2016-10-27tests/extmod/vfs_fat_oldproto: Test old block device protocol.Alex March