Add `architecture` to `run_fuzzer_parser`'s namespace (#8377)

Add architecture to run_fuzzer's namespace
This commit is contained in:
Dongge Liu 2022-08-31 22:09:20 +10:00 committed by GitHub
parent eef03e0cc6
commit 7286a718e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -292,6 +292,7 @@ def get_parser(): # pylint: disable=too-many-statements
run_fuzzer_parser = subparsers.add_parser(
'run_fuzzer', help='Run a fuzzer in the emulated fuzzing environment.')
_add_architecture_args(run_fuzzer_parser)
_add_engine_args(run_fuzzer_parser)
_add_sanitizer_args(run_fuzzer_parser)
_add_environment_args(run_fuzzer_parser)