Skip to content

Commit

Permalink
build: print crashers after fuzzing
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Jan 29, 2024
1 parent abb3b60 commit ebf16d9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
run: |
go test ./test/fuzz/... -fuzz ACH -fuzztime 10m
- name: Report Failures
if: ${{ failure() }}
run: |
find ./test/fuzz/testdata/fuzz/ -type f | xargs -n1 tail -n +1 -v
fuzz-json:
name: Fuzz JSON
runs-on: ubuntu-latest
Expand Down Expand Up @@ -67,3 +72,8 @@ jobs:
- name: Fuzz
run: |
go test ./test/fuzz/... -fuzz JSON -fuzztime 10m
- name: Report Failures
if: ${{ failure() }}
run: |
find ./test/fuzz/testdata/fuzz/ -type f | xargs -n1 tail -n +1 -v

0 comments on commit ebf16d9

Please sign in to comment.