Browse Source

tests/vfs_fat_oldproto: Skip for ports not supporting "oldproto".

Otherwise this broke esp8266 testsuite.
pull/2599/head
Paul Sokolovsky 8 years ago
parent
commit
fa3a108ed7
  1. 2
      tests/extmod/vfs_fat_oldproto.py

2
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()

Loading…
Cancel
Save