microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
Guide/src/dev_guide/tests/fuzzing.md
8lines · modecode
| 1 | # Fuzzing in OpenVMM |
| 2 | |
| 3 | Fuzzing infrastructure in OpenVMM is based on the excellent |
| 4 | [cargo-fuzz](https://github.com/rust-fuzz/cargo-fuzz) project, which makes it super easy to get |
| 5 | up-and-running with fuzzing in Rust projects. |
| 6 | |
| 7 | For the curious: Under-the-hood, `cargo-fuzz` hooks into LLVM's |
| 8 | [libFuzzer](https://www.llvm.org/docs/LibFuzzer.html) to do the actual fuzzing. |
| 9 | |