diff options
author | Damien George <damien.p.george@gmail.com> | 2017-03-13 21:42:02 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-03-13 21:42:02 +1100 |
commit | 8891b2e7006334e5333a9a35602ae01f0700b12f (patch) | |
tree | f1682bb5b86a8ef9f9a2c77e17b278a4214ed31e /tests/extmod/vfs_basic.py.exp | |
parent | 0a3ac07ec79acf580ccf3c6188f25cde2f77bbe5 (diff) |
tests/extmod: Add a test for core VFS functionality, sans any filesystem.
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 new file mode 100644 index 000000000..c9ed65191 --- /dev/null +++ b/tests/extmod/vfs_basic.py.exp @@ -0,0 +1,17 @@ +1 mount False False +['test_mnt'] +1 listdir / +['a1'] +1 listdir / +['a1'] +2 mount True False +['test_mnt', 'test_mnt2'] +2 listdir / +['a2'] +1 chdir / +1 listdir +['a1'] +1 open test_file r +1 open test_file wb +1 umount +2 umount |