From 8eb426564a4c59c59d7a1a6873dbaef913dcc7c7 Mon Sep 17 00:00:00 2001 From: Folkert Date: Sun, 9 Jun 2024 17:21:08 +0200 Subject: [PATCH] set `RUST_BACKTRACE=1` for `cargo fuzz` --- .github/workflows/checks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 8cd25f4f..7385bdbd 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -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: @@ -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