1 /*
2  * This file is part of the MicroPython project, http://micropython.org/
3  *
4  * The MIT License (MIT)
5  *
6  * Copyright (c) 2013-2016 Damien P. George
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a copy
9  * of this software and associated documentation files (the "Software"), to deal
10  * in the Software without restriction, including without limitation the rights
11  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12  * copies of the Software, and to permit persons to whom the Software is
13  * furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24  * THE SOFTWARE.
25  */
26 
27 // This config enables almost all possible features such that it can be used
28 // for coverage testing.
29 
30 #define MICROPY_VFS                    (1)
31 #define MICROPY_PY_UOS_VFS             (1)
32 
33 #define MICROPY_DEBUG_PARSE_RULE_NAME  (1)
34 #define MICROPY_OPT_MATH_FACTORIAL     (1)
35 #define MICROPY_FLOAT_HIGH_QUALITY_HASH (1)
36 #define MICROPY_ENABLE_SCHEDULER       (1)
37 #define MICROPY_READER_VFS             (1)
38 #define MICROPY_REPL_EMACS_WORDS_MOVE  (1)
39 #define MICROPY_REPL_EMACS_EXTRA_WORDS_MOVE (1)
40 #define MICROPY_WARNINGS_CATEGORY      (1)
41 #define MICROPY_MODULE_GETATTR         (1)
42 #define MICROPY_PY_DELATTR_SETATTR     (1)
43 #define MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS (1)
44 #define MICROPY_PY_REVERSE_SPECIAL_METHODS (1)
45 #define MICROPY_PY_BUILTINS_MEMORYVIEW_ITEMSIZE (1)
46 #define MICROPY_PY_BUILTINS_NEXT2      (1)
47 #define MICROPY_PY_BUILTINS_RANGE_BINOP (1)
48 #define MICROPY_PY_BUILTINS_HELP       (1)
49 #define MICROPY_PY_BUILTINS_HELP_MODULES (1)
50 #define MICROPY_PY_SYS_GETSIZEOF       (1)
51 #define MICROPY_PY_MATH_FACTORIAL      (1)
52 #define MICROPY_PY_URANDOM_EXTRA_FUNCS (1)
53 #define MICROPY_PY_IO_BUFFEREDWRITER (1)
54 #define MICROPY_PY_IO_RESOURCE_STREAM (1)
55 #define MICROPY_PY_UASYNCIO            (1)
56 #define MICROPY_PY_URE_DEBUG           (1)
57 #define MICROPY_PY_URE_MATCH_GROUPS    (1)
58 #define MICROPY_PY_URE_MATCH_SPAN_START_END (1)
59 #define MICROPY_PY_URE_SUB             (1)
60 #define MICROPY_VFS_POSIX              (1)
61 #define MICROPY_PY_FRAMEBUF            (1)
62 #define MICROPY_PY_COLLECTIONS_NAMEDTUPLE__ASDICT (1)
63 #define MICROPY_PY_UCRYPTOLIB          (1)
64 #define MICROPY_PY_UCRYPTOLIB_CTR      (1)
65 #define MICROPY_PY_MICROPYTHON_HEAP_LOCKED (1)
66 
67 // use vfs's functions for import stat and builtin open
68 #define mp_import_stat mp_vfs_import_stat
69 #define mp_builtin_open mp_vfs_open
70 #define mp_builtin_open_obj mp_vfs_open_obj
71