mirror of https://github.com/google/oss-fuzz.git
[infra] Add fuzzing_engines section for the project.yaml. (#3267)
* [infra] Add fuzzing_engines section for the project.yaml. * Update presubmit.py * Update presubmit.py * Update presubmit.py
This commit is contained in:
parent
2c6c6d9785
commit
a37f237ca5
|
@ -74,13 +74,21 @@ class ProjectYamlChecker:
|
||||||
SECTIONS_AND_CONSTANTS = {
|
SECTIONS_AND_CONSTANTS = {
|
||||||
'sanitizers': {'address', 'none', 'memory', 'undefined', 'dataflow'},
|
'sanitizers': {'address', 'none', 'memory', 'undefined', 'dataflow'},
|
||||||
'architectures': {'i386', 'x86_64'},
|
'architectures': {'i386', 'x86_64'},
|
||||||
'engines': {'afl', 'libfuzzer', 'honggfuzz', 'dataflow'}
|
'fuzzing_engines': {'afl', 'libfuzzer', 'honggfuzz', 'dataflow'}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Note: this list must be updated when we allow new sections.
|
# Note: this list must be updated when we allow new sections.
|
||||||
VALID_SECTION_NAMES = [
|
VALID_SECTION_NAMES = [
|
||||||
'homepage', 'primary_contact', 'auto_ccs', 'sanitizers', 'architectures',
|
'architectures',
|
||||||
'disabled', 'view_restrictions', 'coverage_extra_args', 'vendor_ccs'
|
'auto_ccs',
|
||||||
|
'coverage_extra_args',
|
||||||
|
'disabled',
|
||||||
|
'fuzzing_engines',
|
||||||
|
'homepage',
|
||||||
|
'primary_contact',
|
||||||
|
'sanitizers',
|
||||||
|
'vendor_ccs',
|
||||||
|
'view_restrictions',
|
||||||
]
|
]
|
||||||
|
|
||||||
# Note that some projects like boost only have auto-ccs. However, forgetting
|
# Note that some projects like boost only have auto-ccs. However, forgetting
|
||||||
|
|
Loading…
Reference in New Issue