[skip ci] Try to fix fuzz ci

This commit is contained in:
ado 2024-03-03 01:57:44 +01:00
parent 2f98e93dc4
commit a33f94a9f8
3 changed files with 9 additions and 2 deletions

View File

@ -54,4 +54,4 @@ jobs:
- name: Run
working-directory: fuzz
run: ssp_fuzz -max_total_time=30
run: make run

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ build/
hbuild/
subprojects/*
!subprojects/*.wrap
fuzz/ssp_fuzz

View File

@ -1,2 +1,8 @@
BIN=ssp_fuzz
SRC=ssp_fuzz.cpp
all:
clang++ -std=c++17 -o ssp_fuzz ssp_fuzz.cpp -g -fsanitize=fuzzer
${CXX} ${CXXFLAGS} ${SRC} -fsanitize=fuzzer -std=c++17 -o ${BIN}
run:
./${BIN} -max_total_time=30