diff options
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r-- | scripts/test/shared.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 9d75660ed..28c85e792 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -96,8 +96,8 @@ def parse_args(args): # 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, + '--no-auto-initial-contents', dest='auto_initial_contents', + action='store_false', default=True, help='Select important initial contents automaticaly in fuzzer. ' 'Default: disabled.') |