Skip to content

Commit

Permalink
Run memhungry fuzzed binaries in one thread.
Browse files Browse the repository at this point in the history
  • Loading branch information
wargio committed Sep 13, 2024
1 parent 36fe79b commit a29c2c3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,9 @@ jobs:
fi
cd test
rz-test -LF bins/fuzzed @fuzz
# some fuzzed bins are mem hungry and are killed by the runner.
# running them one threaded allows to be check them
rz-test -j1 -LF bins/fuzzed-memhungry @fuzz
env:
ASAN: ${{ matrix.asan }}
ASAN_OPTIONS: ${{ matrix.asan_options }}
Expand Down Expand Up @@ -502,7 +505,11 @@ jobs:
ASAN: true
ASAN_OPTIONS: detect_leaks=0,detect_odr_violation=0,allocator_may_return_null=1
- name: Run fuzz tests
run: rz-test -LF bins/fuzzed @fuzz
run: |
rz-test -LF bins/fuzzed @fuzz
# some fuzzed bins are mem hungry and are killed by the runner.
# running them one threaded allows to be check them
rz-test -j1 -LF bins/fuzzed-memhungry @fuzz
working-directory: rizin/test
env:
ASAN: true
Expand Down

0 comments on commit a29c2c3

Please sign in to comment.