Now that the `cargo fuzz` tooling is better, it is easier to reproduce failures, and we don't need to be super paranoid about logging here.
10 lines
182 B
Rust
Executable File
10 lines
182 B
Rust
Executable File
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use wasmtime::Strategy;
|
|
use wasmtime_fuzzing::oracles;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
oracles::instantiate(data, Strategy::Auto);
|
|
});
|