aboutsummaryrefslogtreecommitdiff
path: root/infra/helper.py
diff options
context:
space:
mode:
authorAbhishek Arya <inferno@chromium.org>2020-04-08 14:24:34 -0700
committerGitHub <noreply@github.com>2020-04-08 14:24:34 -0700
commitf4878b30fcdca788a5683520e6052dfaada169da (patch)
tree845dc26d73c4445e826bb22a4e6618e49c26be5c /infra/helper.py
parent2efc17a17ea5becf31926dbd6677a91f68fa48fc (diff)
downloadoss-fuzz-f4878b30fcdca788a5683520e6052dfaada169da.tar.gz
Add check_build for Honggfuzz targets, enable in travis. (#3596)
Diffstat (limited to 'infra/helper.py')
-rwxr-xr-xinfra/helper.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/helper.py b/infra/helper.py
index bf3158295..1d512e139 100755
--- a/infra/helper.py
+++ b/infra/helper.py
@@ -104,7 +104,8 @@ 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', 'dataflow'])
+ _add_engine_args(check_build_parser,
+ choices=['libfuzzer', 'afl', 'honggfuzz', 'dataflow'])
_add_sanitizer_args(check_build_parser,
choices=['address', 'memory', 'undefined', 'dataflow'])
_add_environment_args(check_build_parser)