diff options
author | Damien George <damien.p.george@gmail.com> | 2017-03-14 16:07:30 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-03-14 16:07:30 +1100 |
commit | 773b0bac416907d21f0aa0a0322f355e5588c8ad (patch) | |
tree | c6e6f4d16d295c682b876b58b35a43c3ac0ab247 /tests/extmod/vfs_basic.py.exp | |
parent | d1ae6ae080e1475b50aa2c6580d1ea588cfbdf64 (diff) |
tests/extmod/vfs_basic: Add more tests for basic VFS functionality.
Diffstat (limited to 'tests/extmod/vfs_basic.py.exp')
-rw-r--r-- | tests/extmod/vfs_basic.py.exp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/extmod/vfs_basic.py.exp b/tests/extmod/vfs_basic.py.exp index c9ed65191..5104a16a6 100644 --- a/tests/extmod/vfs_basic.py.exp +++ b/tests/extmod/vfs_basic.py.exp @@ -1,3 +1,5 @@ +(16384, 0, 0, 0, 0, 0, 0, 0, 0, 0) +/ 1 mount False False ['test_mnt'] 1 listdir / @@ -8,10 +10,25 @@ ['test_mnt', 'test_mnt2'] 2 listdir / ['a2'] +3 mount False False +OSError +OSError +OSError 1 chdir / 1 listdir ['a1'] +1 getcwd +/test_mntdir1 +1 mkdir test_dir +1 remove test_file +1 rename test_file test_file2 +1 rmdir test_dir +1 stat test_file +(1,) +1 statvfs / +(1,) 1 open test_file r 1 open test_file wb 1 umount 2 umount +OSError |