mirror of
https://github.com/red0124/ssp.git
synced 2025-04-20 10:37:57 +02:00
[skip ci] Remove fuzz optimization, update fuzz.yml, increase fuzzing time
This commit is contained in:
parent
d5d944ee64
commit
1b6277f6d5
4
.github/workflows/fuzz.yml
vendored
4
.github/workflows/fuzz.yml
vendored
@ -31,10 +31,6 @@ jobs:
|
||||
image: silkeh/clang:15
|
||||
options: -v /usr/local:/host_usr_local
|
||||
|
||||
env:
|
||||
CC: clang
|
||||
CXX: clang++
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
|
@ -1,11 +1,7 @@
|
||||
BIN=ssp_fuzz
|
||||
OPT_BIN=opt_ssp_fuzz
|
||||
SRC=ssp_fuzz.cpp
|
||||
EXE=ssp_fuzz
|
||||
|
||||
all:
|
||||
${CXX} ${SRC} -fsanitize=fuzzer -std=c++17 -o ${BIN}
|
||||
${CXX} ${SRC} -fsanitize=fuzzer -std=c++17 -O2 -o ${OPT_BIN}
|
||||
clang++ ssp_fuzz.cpp -fsanitize=fuzzer -std=c++17 -o ${EXE}
|
||||
|
||||
run:
|
||||
./${BIN} -max_total_time=300
|
||||
./${OPT_BIN} -max_total_time=300
|
||||
./${EXE} -max_total_time=900
|
||||
|
Loading…
Reference in New Issue
Block a user