bolt/deps/llvm-18.1.8/libc/fuzzing/string/CMakeLists.txt

43 lines
564 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
add_libc_fuzzer(
strcmp_fuzz
SRCS
strcmp_fuzz.cpp
DEPENDS
libc.src.string.strcmp
)
add_libc_fuzzer(
strcpy_fuzz
SRCS
strcpy_fuzz.cpp
DEPENDS
libc.src.string.memcpy
libc.src.string.strcpy
libc.src.string.strlen
)
add_libc_fuzzer(
strstr_fuzz
SRCS
strstr_fuzz.cpp
DEPENDS
libc.src.string.strstr
libc.src.string.strlen
)
add_libc_fuzzer(
memcmp_fuzz
SRCS
memcmp_fuzz.cpp
DEPENDS
libc.src.string.memcmp
)
add_libc_fuzzer(
bcmp_fuzz
SRCS
bcmp_fuzz.cpp
DEPENDS
libc.src.string.bcmp
)