Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
louismerlin committed Nov 4, 2024
1 parent 9e6fa82 commit c9b8567
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
- run: sudo apt-get update
- run: sudo apt-get install binutils-dev libunwind-dev gnuplot
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
<<<<<<< Updated upstream
- run: rustup component add rust-src
=======
>>>>>>> Stashed changes
- run: cargo install cargo-afl honggfuzz grcov
- run: cargo install --path . --verbose
- run: cargo test --verbose
- run: cargo test --verbose -- --show-output
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/asan/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "asan"
name = "asan-fuzz"
version = "0.1.0"
edition = "2021"

Expand Down
1 change: 1 addition & 0 deletions tests/asan_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ fn asan_crashes() {
let build_status = process::Command::new(&cargo_ziggy)
.arg("ziggy")
.arg("build")
.arg("--no-honggfuzz")
.current_dir(&fuzzer_directory)
.status()
.expect("failed to run `cargo ziggy build`");
Expand Down

0 comments on commit c9b8567

Please sign in to comment.