Clang has __attribute__((no_sanitize("coverage"))) and -fsanitize-coverage-allowlist/-fsanitize-coverage-ignorelist, is it possible to do something similar using cargo-fuzz? Using #[coverage(off)] does not seem to have any effect on the number of 8-bit counters reported, so I assume it does not exclude code from the sanitizer coverage.
Clang has
__attribute__((no_sanitize("coverage")))and-fsanitize-coverage-allowlist/-fsanitize-coverage-ignorelist, is it possible to do something similar using cargo-fuzz? Using#[coverage(off)]does not seem to have any effect on the number of 8-bit counters reported, so I assume it does not exclude code from the sanitizer coverage.