summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/vfs_basic.py.exp
Commit message (Collapse)AuthorAge
* extmod/vfs: Fix lookup of entry in root dir so it fails correctly.Damien George2020-09-23
| | | | | | | | | | Prior to this commit, uos.chdir('/') followed by uos.stat('noexist') would succeed that stat even though the entry did not exist (some other functions like listdir would have similar issues). This is because, if the current directory was the root and the path was relative, mp_vfs_lookup_path would return success for bad paths. Signed-off-by: Damien George <damien@micropython.org>
* extmod/vfs: Retain previous working directory if chdir fails.Damien George2020-05-29
| | | | Fixes issue #6069.
* tests/extmod/vfs_basic: Allow test to pass on embedded targets.Damien George2017-06-11
|
* extmod/vfs: Allow to statvfs the root directory.Damien George2017-06-07
|
* tests/extmod/vfs: Update tests to reflect new ilistdir() method.Damien George2017-05-10
|
* tests/extmod: Add some more VFS tests.Damien George2017-05-05
|
* tests/extmod/vfs_basic: Add more tests for basic VFS functionality.Damien George2017-03-14
|
* tests/extmod: Add a test for core VFS functionality, sans any filesystem.Damien George2017-03-13