From 3861dcf38cf16f384b6775c7292fa28dbe7eba62 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 5 Oct 2018 16:44:13 -0700 Subject: [PATCH] Move URLs out of line and wrap long lines. --- cranelift/FUZZING.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/cranelift/FUZZING.md b/cranelift/FUZZING.md index 55643a73b9..a2e8eb7d51 100644 --- a/cranelift/FUZZING.md +++ b/cranelift/FUZZING.md @@ -1,6 +1,13 @@ # Fuzzing -This document describes how to fuzz cranelift with [`cargo-fuzz`](https://github.com/rust-fuzz/cargo-fuzz). The fuzz targets use `wasm-opt` from [`binaryen-rs`](https://github.com/pepyakin/binaryen-rs) to generate valid WebAssembly modules from the fuzzed input supplied by `cargo-fuzz` (via [libfuzzer](http://llvm.org/docs/LibFuzzer.html)). In this scheme coverage feedback from both cranelift and the `wasm-opt` input generation code is used to inform the fuzzer. +This document describes how to fuzz cranelift with [`cargo-fuzz`]. The fuzz targets use `wasm-opt` +from [`binaryen-rs`] to generate valid WebAssembly modules from the fuzzed input supplied by +`cargo-fuzz` (via [libfuzzer]). In this scheme coverage feedback from both cranelift and the +`wasm-opt` input generation code is used to inform the fuzzer. + +[`cargo-fuzz`]: https://github.com/rust-fuzz/cargo-fuzz +[`binaryen-rs`]: https://github.com/pepyakin/binaryen-rs +[libfuzzer]: http://llvm.org/docs/LibFuzzer.html # Usage