aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2020-08-25 16:31:29 -0700
committerGravatar GitHub <noreply@github.com>2020-08-25 16:31:29 -0700
commit13f7ba0f6383e6d913d2a351ef0ed6a5b7211165 (patch)
tree370f7387592f8422cd95369609421fb16b1ddc1c /infra
parenteabcccf848c6ff37fb60c749ee0261c42d2e13a6 (diff)
[presubmit] Allow 'none' as a fuzzing engine (#4370)
'none' is used by projects like spidermonkey that use the JS fuzzer.
Diffstat (limited to 'infra')
-rwxr-xr-xinfra/presubmit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/presubmit.py b/infra/presubmit.py
index 8b562258..3a211ca6 100755
--- a/infra/presubmit.py
+++ b/infra/presubmit.py
@@ -75,7 +75,7 @@ class ProjectYamlChecker:
SECTIONS_AND_CONSTANTS = {
'sanitizers': {'address', 'none', 'memory', 'undefined', 'dataflow'},
'architectures': {'i386', 'x86_64'},
- 'fuzzing_engines': {'afl', 'libfuzzer', 'honggfuzz', 'dataflow'},
+ 'fuzzing_engines': {'afl', 'libfuzzer', 'honggfuzz', 'dataflow', 'none'},
}
# Note: this list must be updated when we allow new sections.