From fa3a108ed7015a131848ca34e5908d183774baf5 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 6 Nov 2016 01:47:44 +0300 Subject: [PATCH] tests/vfs_fat_oldproto: Skip for ports not supporting "oldproto". Otherwise this broke esp8266 testsuite. --- tests/extmod/vfs_fat_oldproto.py | 2 ++ 1 file changed, 2 insertions(+) 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()