mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
The solution is based on clusterfuzzlite, libfuzzer, and oss-fuzz technologies. - Add the .clusterfuzzlite directory. - Add the fuzz CI stage and fuzzing CI jobs. - Add the fuzzing targets in the fuzz directory. - Document fuzzing in doxygen.
17 lines
424 B
Makefile
17 lines
424 B
Makefile
SUBDIRS = .
|
|
|
|
if FUZZING
|
|
|
|
check_SCRIPTS =
|
|
check_SCRIPTS += test-fuzz-config-kea-dhcp4.sh
|
|
check_SCRIPTS += test-fuzz-config-kea-dhcp6.sh
|
|
check_SCRIPTS += test-fuzz-http-endpoint.sh
|
|
check_SCRIPTS += test-fuzz-packets-kea-dhcp4.sh
|
|
check_SCRIPTS += test-fuzz-packets-kea-dhcp6.sh
|
|
check_SCRIPTS += test-fuzz-unix-socket-kea-dhcp4.sh
|
|
check_SCRIPTS += test-fuzz-unix-socket-kea-dhcp6.sh
|
|
|
|
TESTS = $(check_SCRIPTS)
|
|
|
|
endif # FUZZING
|