Add more Fuzzer tasks

This commit is contained in:
Alexey Milovidov 2021-01-17 21:14:57 +03:00
parent 15f4ae26c2
commit 19dc5239fa

View File

@ -609,7 +609,7 @@
"with_coverage": false
}
},
"AST fuzzer": {
"AST fuzzer (debug)": {
"required_build_properties": {
"compiler": "clang-11",
"package_type": "binary",
@ -621,6 +621,54 @@
"with_coverage": false
}
},
"AST fuzzer (ASan)": {
"required_build_properties": {
"compiler": "clang-11",
"package_type": "binary",
"build_type": "relwithdebuginfo",
"sanitizer": "address",
"bundled": "bundled",
"splitted": "unsplitted",
"clang-tidy": "disable",
"with_coverage": false
}
},
"AST fuzzer (MSan)": {
"required_build_properties": {
"compiler": "clang-11",
"package_type": "binary",
"build_type": "relwithdebuginfo",
"sanitizer": "memory",
"bundled": "bundled",
"splitted": "unsplitted",
"clang-tidy": "disable",
"with_coverage": false
}
},
"AST fuzzer (TSan)": {
"required_build_properties": {
"compiler": "clang-11",
"package_type": "binary",
"build_type": "relwithdebuginfo",
"sanitizer": "thread",
"bundled": "bundled",
"splitted": "unsplitted",
"clang-tidy": "disable",
"with_coverage": false
}
},
"AST fuzzer (UBSan)": {
"required_build_properties": {
"compiler": "clang-11",
"package_type": "binary",
"build_type": "relwithdebuginfo",
"sanitizer": "undefined",
"bundled": "bundled",
"splitted": "unsplitted",
"clang-tidy": "disable",
"with_coverage": false
}
},
"Release": {
"required_build_properties": {
"compiler": "clang-11",