Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/bin/cargo-ziggy/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ impl Build {
);
eprintln!(" {} honggfuzz", style("Building").red().bold());

let mut hfuzz_args = vec!["hfuzz", "build"];

// Add the --release argument if self.release is true
let mut hfuzz_args = vec!["hfuzz"];
if self.release {
hfuzz_args.push("--release");
hfuzz_args.push("build")
} else {
hfuzz_args.push("build-debug")
}

// Second fuzzer we build: Honggfuzz
Expand Down
2 changes: 1 addition & 1 deletion tests/arbitrary_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ fn integration() {
.current_dir(fuzzer_directory)
.spawn()
.expect("failed to run `cargo ziggy fuzz`");
thread::sleep(Duration::from_secs(10));
thread::sleep(Duration::from_secs(30));
kill_subprocesses_recursively(&format!("{}", fuzzer.id()));

assert!(temp_dir_path
Expand Down
2 changes: 1 addition & 1 deletion tests/asan_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fn asan_crashes() {
.current_dir(&fuzzer_directory)
.spawn()
.expect("failed to run `cargo ziggy fuzz`");
thread::sleep(Duration::from_secs(40));
thread::sleep(Duration::from_secs(30));
kill_subprocesses_recursively(&format!("{}", fuzzer.id()));

assert!(temp_dir_path
Expand Down
4 changes: 2 additions & 2 deletions tests/url_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ fn integration() {
.current_dir(&fuzzer_directory)
.spawn()
.expect("failed to run `cargo ziggy fuzz`");
thread::sleep(Duration::from_secs(10));
thread::sleep(Duration::from_secs(30));
kill_subprocesses_recursively(&format!("{}", fuzzer.id()));

assert!(temp_dir_path
Expand Down Expand Up @@ -100,7 +100,7 @@ fn integration() {
.current_dir(&fuzzer_directory)
.spawn()
.expect("failed to run `cargo ziggy fuzz`");
thread::sleep(Duration::from_secs(10));
thread::sleep(Duration::from_secs(30));
kill_subprocesses_recursively(&format!("{}", fuzzer.id()));

// cargo ziggy minimize
Expand Down