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.
9 lines
175 B
Rust
Executable File
9 lines
175 B
Rust
Executable File
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use wasmtime_fuzzing::{generators::api::ApiCalls, oracles};
|
|
|
|
fuzz_target!(|api: ApiCalls| {
|
|
oracles::make_api_calls(api);
|
|
});
|