We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 504cd8c commit c14a390Copy full SHA for c14a390
cargo-afl/tests/integration.rs
@@ -71,11 +71,10 @@ fn integration_maze() {
71
return;
72
}
73
74
- let mut fail = 0;
75
let temp_dir = tempfile::TempDir::new().expect("Could not create temporary directory");
76
let temp_dir_path = temp_dir.path();
77
78
- for i in 0..3 {
+ for _i in 0..3 {
79
let _: ExitStatus = process::Command::new(cargo_afl_path())
80
.arg("afl")
81
.arg("fuzz")
@@ -96,7 +95,7 @@ fn integration_maze() {
96
95
let crashes = std::fs::read_dir(temp_dir_path.join("default").join("crashes"))
97
.unwrap()
98
.count();
99
- if (crashes >= 1) {
+ if crashes >= 1 {
100
101
102
0 commit comments