skip adding execute_query_fuzzer to the fuzzers bundle - too large - linker fails

This commit is contained in:
Yakov Olkhovskiy 2023-08-28 02:05:43 +00:00
parent db1a291e1e
commit 017eab4a07

View File

@ -588,6 +588,10 @@ if (FUZZER)
target_link_libraries(${target} PRIVATE ch_contrib::fuzzer)
target_compile_options(${target} PRIVATE "-fsanitize=fuzzer-no-link")
message(STATUS "${target} instrumented with fuzzer")
# Skip this fuzzer because of linker errors (the size of the binary is too big)
if (target = "execute_query_fuzzer")
continue()
endif()
# Add to bundle
add_dependencies(fuzzers ${target})
endif()