Commit f55dcddb authored by Damien George's avatar Damien George

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

parent 0a7735f1
...@@ -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']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment