Also stderr

This commit is contained in:
Sergey Pepyakin 2018-02-16 02:10:02 +03:00
parent 067c08302d
commit 7100f6c31b
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ fuzz_target!(|data: &[u8]| {
let wasm_result = Command::new("wasm")
.arg(seed_path)
.stdout(Stdio::null())
.stderr(Stdio::null())
.status()
.expect("failed to execute `wasm`");