Allow none in engine for infra/helper.py

This commit is contained in:
Abhishek Arya 2020-12-17 19:47:03 -08:00
parent 6718fb8bd6
commit f359fd010f
1 changed files with 3 additions and 2 deletions

View File

@ -109,8 +109,9 @@ def main(): # pylint: disable=too-many-branches,too-many-return-statements,too-
check_build_parser = subparsers.add_parser(
'check_build', help='Checks that fuzzers execute without errors.')
_add_architecture_args(check_build_parser)
_add_engine_args(check_build_parser,
choices=['libfuzzer', 'afl', 'honggfuzz', 'dataflow'])
_add_engine_args(
check_build_parser,
choices=['libfuzzer', 'afl', 'honggfuzz', 'dataflow', 'none'])
_add_sanitizer_args(check_build_parser,
choices=['address', 'memory', 'undefined', 'dataflow'])
_add_environment_args(check_build_parser)