diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-11-06 01:47:44 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-11-06 01:47:44 +0300 |
commit | fa3a108ed7015a131848ca34e5908d183774baf5 (patch) | |
tree | c646b21ad4837ecda5434e40d212606e9e046448 | |
parent | 8bc3fc20feca9ebe9e9972aeb6b68a81d792c5df (diff) | |
download | micropython-fa3a108ed7015a131848ca34e5908d183774baf5.tar.gz micropython-fa3a108ed7015a131848ca34e5908d183774baf5.zip |
tests/vfs_fat_oldproto: Skip for ports not supporting "oldproto".
Otherwise this broke esp8266 testsuite.
-rw-r--r-- | tests/extmod/vfs_fat_oldproto.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/extmod/vfs_fat_oldproto.py b/tests/extmod/vfs_fat_oldproto.py index bb8dd824cf..73983567d9 100644 --- a/tests/extmod/vfs_fat_oldproto.py +++ b/tests/extmod/vfs_fat_oldproto.py @@ -3,6 +3,8 @@ import uos import uerrno try: uos.VfsFat + uos.vfs_mkfs + uos.vfs_mount except AttributeError: print("SKIP") sys.exit() |