diff options
Diffstat (limited to 'scripts/test')
-rw-r--r-- | scripts/test/shared.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index d84189891..82e4fe03e 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -92,6 +92,14 @@ def parse_args(args): '--filter', dest='test_name_filter', default='', help=('Specifies a filter. Only tests whose paths contains this ' 'substring will be run')) + # This option is only for fuzz_opt.py + # TODO Allow each script to inherit the default set of options and add its + # own custom options on top of that + parser.add_argument( + '--auto-initial-contents', dest='auto_initial_contents', + action='store_true', default=False, + help='Select important initial contents automaticaly in fuzzer. ' + 'Default: disabled.') return parser.parse_args(args) |