Skip to content

Commit

Permalink
Tweak tests and doc build
Browse files Browse the repository at this point in the history
  • Loading branch information
louismerlin committed Oct 12, 2023
1 parent 15e728e commit d198b53
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ Features will also include:

First, install `ziggy` and its dependencies by running:

```bash,no_run
```bash
cargo install --force ziggy cargo-afl honggfuzz grcov
```

Here is the output of the tool's help:

```no_run
```text
$ cargo ziggy
A multi-fuzzer management utility for all of your Rust fuzzing needs 🧑‍🎤
Expand Down Expand Up @@ -70,7 +70,7 @@ The `cargo cover` command will not generate coverage for the dependencies of you
by default.

If this is something you would like to change, you can use the following trick:
```bash,no_run
```bash
CARGO_HOME=.cargo cargo ziggy cover
```

Expand Down
1 change: 1 addition & 0 deletions tests/arbitrary_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ fn integration() {
.arg("fuzz")
.arg("-j2")
.arg("-t5")
.arg("-G100")
.env("ZIGGY_OUTPUT", format!("{}", temp_dir_path.display()))
.env("AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES", "1")
.env("AFL_SKIP_CPUFREQ", "1")
Expand Down
2 changes: 2 additions & 0 deletions tests/url_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ fn integration() {
.arg("fuzz")
.arg("-j2")
.arg("-t5")
.arg("-G100")
.env("ZIGGY_OUTPUT", format!("{}", temp_dir_path.display()))
.env("AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES", "1")
.env("AFL_SKIP_CPUFREQ", "1")
Expand Down Expand Up @@ -91,6 +92,7 @@ fn integration() {
.arg("fuzz")
.arg("-j2")
.arg("-t5")
.arg("-G100")
.env("ZIGGY_OUTPUT", format!("{}", temp_dir_path.display()))
.env("AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES", "1")
.env("AFL_SKIP_CPUFREQ", "1")
Expand Down

0 comments on commit d198b53

Please sign in to comment.