summaryrefslogtreecommitdiffstats
path: root/cmake/AddFuzzerTest.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/AddFuzzerTest.cmake')
-rw-r--r--cmake/AddFuzzerTest.cmake15
1 files changed, 15 insertions, 0 deletions
diff --git a/cmake/AddFuzzerTest.cmake b/cmake/AddFuzzerTest.cmake
new file mode 100644
index 0000000..e16aa1b
--- /dev/null
+++ b/cmake/AddFuzzerTest.cmake
@@ -0,0 +1,15 @@
+macro(add_fuzzer_test FILES LINK_LIBS)
+ if (BUILD_FUZZERS)
+ string(REPLACE " " ";" LOCAL_LINK_LIBS ${LINK_LIBS})
+ list(APPEND LOCAL_LINK_LIBS fuzzer_config)
+ foreach(test ${FILES})
+ get_filename_component(TestName ${test} NAME_WE)
+ add_executable(${TestName} ${test})
+ # Use PUBLIC to force 'fuzzer_config' for all dependent targets.
+ target_link_libraries(${TestName} PUBLIC ${LOCAL_LINK_LIBS})
+ add_test(${TestName} ${TESTING_OUTPUT_DIRECTORY}/${MODULE_NAME} ${TestName})
+ set_target_properties(${TestName} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${TESTING_OUTPUT_DIRECTORY}")
+ add_dependencies(fuzzers ${TestName})
+ endforeach()
+ endif (BUILD_FUZZERS)
+endmacro()