Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
louismerlin committed Dec 4, 2024
1 parent ab16ef7 commit 3561a7f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/bin/cargo-ziggy/fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ use std::{
use strip_ansi_escapes::strip_str;

/// Main logic for managing fuzzers and the fuzzing process in ziggy.

/// ## Initial minimization logic

/// When launching fuzzers, if initial corpora exist, they are merged together and we minimize it
/// with both AFL++ and Honggfuzz.
/// ```text
Expand All @@ -34,7 +32,6 @@ use strip_ansi_escapes::strip_str;
/// honggfuzz -i corpus -o corpus
/// ```
/// The `all_afl_corpora` directory corresponds to the `output/target_name/afl/**/queue/` directories.

impl Fuzz {
pub fn corpus(&self) -> String {
self.corpus
Expand Down
1 change: 1 addition & 0 deletions tests/arbitrary_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ fn kill_subprocesses_recursively(pid: &str) {
}
}

#[allow(clippy::zombie_processes)]
#[test]
fn integration() {
let unix_time = format!(
Expand Down
1 change: 1 addition & 0 deletions tests/asan_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ fn kill_subprocesses_recursively(pid: &str) {
}
}

#[allow(clippy::zombie_processes)]
#[test]
fn asan_crashes() {
// Not optimal but seems to work fine
Expand Down
1 change: 1 addition & 0 deletions tests/url_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ fn kill_subprocesses_recursively(pid: &str) {
}
}

#[allow(clippy::zombie_processes)]
#[test]
fn integration() {
let unix_time = format!(
Expand Down

0 comments on commit 3561a7f

Please sign in to comment.