We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a4937c commit bcb6c8cCopy full SHA for bcb6c8c
1 file changed
.github/workflows/fuzz.yml
@@ -63,6 +63,9 @@ jobs:
63
./fuzz -only_ascii=1 -timeout=5 -fork=$(nproc) -use_value_profile=1 -reduce_inputs=0 -timeout_exitcode=0 -max_total_time=60 -artifact_prefix=./artifacts/ corpus
64
# if a crash happens with a file from the corpus the fuzzer will not fail - so fail if any artifacts have been written
65
test $(find ./artifacts -type f | wc -l) -eq 0
66
+ env:
67
+ ASAN_OPTIONS: detect_stack_use_after_return=1
68
+ UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1:report_error_type=1
69
70
- name: Upload corpus
71
if: success() || failure()
0 commit comments