Redirect output of spec to /dev/null

This commit is contained in:
Sergey Pepyakin 2018-02-16 02:09:03 +03:00
parent 6c40a5b0b6
commit 067c08302d
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@ extern crate tempdir;
use std::fs::File;
use std::io::Write;
use std::process::Command;
use std::process::{Command, Stdio};
fuzz_target!(|data: &[u8]| {
let wasmi_result = wasmi::Module::from_buffer(data);
@ -30,6 +30,7 @@ fuzz_target!(|data: &[u8]| {
let wasm_result = Command::new("wasm")
.arg(seed_path)
.stdout(Stdio::null())
.status()
.expect("failed to execute `wasm`");