aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavidKorczynski <david@adalogics.com>2021-08-05 19:53:20 +0100
committerGitHub <noreply@github.com>2021-08-05 18:53:20 +0000
commitbe08bbd5249e31345dc42140558a3a3f4720e71d (patch)
tree1e411d9a413ee29fbee6116bb4872453614b2b15
parent8a566fccd5bbebd3a478d82a35e084b7a03f42ef (diff)
downloadoss-fuzz-be08bbd5249e31345dc42140558a3a3f4720e71d.tar.gz
infra: add coverage sanitizer option (#6171)
* infra: add coverage sanitizer option * fix lint
-rw-r--r--infra/constants.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/infra/constants.py b/infra/constants.py
index 2fd1836e9..d4b9f7d76 100644
--- a/infra/constants.py
+++ b/infra/constants.py
@@ -31,6 +31,8 @@ LANGUAGES = [
'swift',
]
LANGUAGES_WITH_COVERAGE_SUPPORT = ['c', 'c++', 'go', 'jvm', 'rust']
-SANITIZERS = ['address', 'none', 'memory', 'undefined', 'dataflow', 'thread']
+SANITIZERS = [
+ 'address', 'none', 'memory', 'undefined', 'dataflow', 'thread', 'coverage'
+]
ARCHITECTURES = ['i386', 'x86_64']
ENGINES = ['libfuzzer', 'afl', 'honggfuzz', 'dataflow', 'none']