Skip to content

Commit

Permalink
set RUST_BACKTRACE=1 for cargo fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev authored and rnijveld committed Jun 10, 2024
1 parent 9b4c25e commit 8eb4265
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
run: |
cargo fuzz build ${{ matrix.features }}
for target in $(cargo fuzz list ${{ matrix.features }}) ; do
cargo fuzz run ${{ matrix.features }} $target -- -max_total_time=10
RUST_BACKTRACE=1 cargo fuzz run ${{ matrix.features }} $target -- -max_total_time=10
done
fuzz-aarch64:
Expand Down Expand Up @@ -190,5 +190,5 @@ jobs:
run: |
cargo fuzz build ${{ matrix.features }}
for target in $(cargo fuzz list ${{ matrix.features }}) ; do
cargo fuzz run ${{ matrix.features }} $target -- -max_total_time=10
RUST_BACKTRACE=1 cargo fuzz run ${{ matrix.features }} $target -- -max_total_time=10
done

0 comments on commit 8eb4265

Please sign in to comment.