diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-18 00:58:57 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-18 00:58:57 +0300 |
commit | cbffd0aadd71723365ddd3823ae1c12f4dbacad9 (patch) | |
tree | ba80b4fc9750f69837560da7a458588c52270266 /unix/mpconfigport_coverage.h | |
parent | e6e7e0e9c5622ca1f09012a28024e443216a9e5c (diff) | |
download | micropython-cbffd0aadd71723365ddd3823ae1c12f4dbacad9.tar.gz micropython-cbffd0aadd71723365ddd3823ae1c12f4dbacad9.zip |
unix: Disable FatFs VFS for normal build, keep enabled for coverage.
It's enabled mostly for unit testing, and we do that in full with coverage
build.
Diffstat (limited to 'unix/mpconfigport_coverage.h')
-rw-r--r-- | unix/mpconfigport_coverage.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/unix/mpconfigport_coverage.h b/unix/mpconfigport_coverage.h index e5d5fd7a47..f9a6fbd9dd 100644 --- a/unix/mpconfigport_coverage.h +++ b/unix/mpconfigport_coverage.h @@ -31,3 +31,7 @@ #define MICROPY_PY_URANDOM_EXTRA_FUNCS (1) #define MICROPY_PY_IO_BUFFEREDWRITER (1) +#undef MICROPY_FSUSERMOUNT +#undef MICROPY_VFS_FAT +#define MICROPY_FSUSERMOUNT (1) +#define MICROPY_VFS_FAT (1) |