mirror of https://github.com/google/oss-fuzz.git
Improve Wasmtime's coverage reports (#12661)
Try adding a few ignores for dependencies that we're not interested in to help improve the quality of the coverage reports coming out of fuzzing for Wasmtime.
This commit is contained in:
parent
9439d2c705
commit
78a9532e2e
|
@ -14,3 +14,10 @@ fuzzing_engines:
|
||||||
- libfuzzer
|
- libfuzzer
|
||||||
language: rust
|
language: rust
|
||||||
main_repo: 'https://github.com/bytecodealliance/wasmtime'
|
main_repo: 'https://github.com/bytecodealliance/wasmtime'
|
||||||
|
|
||||||
|
# Ignore some ocaml files that show up, dependencies on crates.io, and the
|
||||||
|
# standard library itself.
|
||||||
|
coverage_extra_args: >
|
||||||
|
-ignore-filename-regex=.*/root/.opam/.*
|
||||||
|
-ignore-filename-regex=.*/registry/src/.*crates.io/.*
|
||||||
|
-ignore-filename-regex=.*/rustc/.*
|
||||||
|
|
Loading…
Reference in New Issue