Skip to content

Commit d7dac87

Browse files
committed
Update fuzzer default to 60, fix job naming on action
1 parent 2749443 commit d7dac87

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
- name: Build
3333
run: ./fuzzing/build.sh
3434

35-
- name: Run fuzzer for ${{ github.event.inputs.duration }} minute(s)
36-
run: ./fuzzing/run.sh ${{ github.event.inputs.duration }}
35+
- name: Run fuzzer
36+
run: ./fuzzing/run.sh ${{ github.event.inputs.duration }}
3737

3838
- name: Log
3939
if: ${{ always() }}

fuzzing/run.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ export ASAN_OPTIONS=detect_leaks=1
1010

1111
rm -f fuzz-*.log
1212

13-
echo "Run fuzzer for ${1:-30} seconds"
14-
./fuzzer -timeout=0.1 -report_slow_units=0.01 -max_total_time=${1:-30} -max_len=1000 -rss_limit_mb=4096 -use_value_profile=1 -dict=sample_dict.txt -artifact_prefix=results/ -jobs=4 -workers=4 -reload=0 corpus
15-
# ./fuzzer -timeout=0.1 -report_slow_units=0.01 -max_total_time=${1:-30} -max_len=1000 -rss_limit_mb=4096 -use_value_profile=1 -dict=sample_dict.txt -artifact_prefix=results/ -reload=0 corpus
13+
echo "Run fuzzer for ${1:-60} seconds"
14+
./fuzzer -timeout=0.1 -report_slow_units=0.01 -max_total_time=${1:-60} -max_len=1000 -rss_limit_mb=4096 -use_value_profile=1 -dict=sample_dict.txt -artifact_prefix=results/ -jobs=4 -workers=4 -reload=0 corpus

0 commit comments

Comments
 (0)