Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Latest commit

 

History

History
9 lines (6 loc) · 744 Bytes

FUZZING.md

File metadata and controls

9 lines (6 loc) · 744 Bytes

Fuzzing

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.

Usage

  1. Install all dependencies required to build binaryen-rs and cargo-fuzz (including cmake)
  2. Use the rust nightly toolchain (required by cargo-fuzz): rustup override set nightly
  3. Execute the fuzz target: cargo fuzz run fuzz_translate_module