Skip to content
Snippets Groups Projects
Commit f55dcddb authored by Damien George's avatar Damien George
Browse files

tests/extmod/vfs_basic: Allow test to pass on embedded targets.

parent 0a7735f1
No related branches found
No related tags found
No related merge requests found
...@@ -56,8 +56,8 @@ for path in uos.listdir('/'): ...@@ -56,8 +56,8 @@ for path in uos.listdir('/'):
# stat root dir # stat root dir
print(uos.stat('/')) print(uos.stat('/'))
# statvfs root dir # statvfs root dir; verify that f_namemax has a sensible size
print(uos.statvfs('/')) print(uos.statvfs('/')[9] >= 32)
# getcwd when in root dir # getcwd when in root dir
print(uos.getcwd()) print(uos.getcwd())
......
(16384, 0, 0, 0, 0, 0, 0, 0, 0, 0) (16384, 0, 0, 0, 0, 0, 0, 0, 0, 0)
(0, 0, 0, 0, 0, 0, 0, 0, 0, 4096) True
/ /
1 mount False False 1 mount False False
['test_mnt'] ['test_mnt']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment