diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-27 15:14:49 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-27 17:21:45 +1100 |
commit | f1e04148a195619d142523152e952af6eaf5cd1c (patch) | |
tree | c7267fd72d4a823e2a03deaa7cf909f1334c332f /unix/mpconfigport_coverage.h | |
parent | 6c23c7587f1c02f58e9246ec59fe4f6544728b50 (diff) |
unix: Change to use new generic VFS sub-system in coverage build.
This patch includes a new module "uos_vfs" which can be used for testing
the VFS syb-system.
Diffstat (limited to 'unix/mpconfigport_coverage.h')
-rw-r--r-- | unix/mpconfigport_coverage.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/mpconfigport_coverage.h b/unix/mpconfigport_coverage.h index 9f237775e..87a743cf8 100644 --- a/unix/mpconfigport_coverage.h +++ b/unix/mpconfigport_coverage.h @@ -27,14 +27,15 @@ // Default unix config while intended to be comprehensive, may still not enable // all the features, this config should enable more (testable) options. +#define MICROPY_VFS (1) +#define MICROPY_PY_UOS_VFS (1) + #include <mpconfigport.h> #define MICROPY_PY_BUILTINS_HELP (1) #define MICROPY_PY_BUILTINS_HELP_MODULES (1) #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) #define MICROPY_PY_FRAMEBUF (1) |