aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/travis
diff options
context:
space:
mode:
authorGravatar Abhishek Arya <inferno@chromium.org>2020-04-07 19:26:24 -0700
committerGravatar GitHub <noreply@github.com>2020-04-07 19:26:24 -0700
commitbc308a7a32677b839dd67c2f06539d7b42bca843 (patch)
tree2941a83547e5b855fe37e3eb9b6d2318c9955e5e /infra/travis
parente2e155fe0ee0c7feacbbca6e93a8ca880c89052f (diff)
Add honggfuzz build in travis. (#3589)
* Add honggfuzz build in travis. * Skip check_build for honggfuzz, only build.
Diffstat (limited to 'infra/travis')
-rwxr-xr-xinfra/travis/travis_build.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/infra/travis/travis_build.py b/infra/travis/travis_build.py
index 6a3cea42..884c5d0a 100755
--- a/infra/travis/travis_build.py
+++ b/infra/travis/travis_build.py
@@ -25,7 +25,7 @@ import subprocess
import yaml
DEFAULT_ARCHITECTURES = ['x86_64']
-DEFAULT_ENGINES = ['afl', 'libfuzzer']
+DEFAULT_ENGINES = ['afl', 'honggfuzz', 'libfuzzer']
DEFAULT_SANITIZERS = ['address', 'undefined']
@@ -125,7 +125,10 @@ def build_project(project):
print('Building project', project)
build_fuzzers(project, engine, sanitizer, architecture)
- if engine != 'none':
+
+ # TODO(https://github.com/google/oss-fuzz/issues/3592): Re-enable after
+ # Honggfuzz is supported in check_build.
+ if engine not in ['none', 'honggfuzz']:
check_build(project, engine, sanitizer, architecture)