mirror of
https://github.com/red0124/ssp.git
synced 2025-04-20 10:37:57 +02:00
[skip ci] Try to fix fuzz ci
This commit is contained in:
parent
2f98e93dc4
commit
a33f94a9f8
2
.github/workflows/fuzz.yml
vendored
2
.github/workflows/fuzz.yml
vendored
@ -54,4 +54,4 @@ jobs:
|
||||
|
||||
- name: Run
|
||||
working-directory: fuzz
|
||||
run: ssp_fuzz -max_total_time=30
|
||||
run: make run
|
||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,3 +6,4 @@ build/
|
||||
hbuild/
|
||||
subprojects/*
|
||||
!subprojects/*.wrap
|
||||
fuzz/ssp_fuzz
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user