You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.5 KiB
28 lines
1.5 KiB
enable_testing() |
|
|
|
set(SRC_DIR "../src") |
|
|
|
add_executable("t_md5" "t_md5.c" "${SRC_DIR}/md5.c") |
|
add_executable("t_buf" "t_buf.c" "${SRC_DIR}/strlcpy.c" "${SRC_DIR}/buf.c") |
|
add_executable("t_cmd" "t_cmd.c" "${SRC_DIR}/strlcpy.c" "${SRC_DIR}/buf.c" "${SRC_DIR}/commands.c") |
|
add_executable("t_matches" "t_matches.c" "${SRC_DIR}/strlcpy.c" "${SRC_DIR}/matches.c") |
|
add_executable("t_ipaddr" "t_ipaddr.c" "${SRC_DIR}/strlcpy.c" "${SRC_DIR}/matches.c" "${SRC_DIR}/ipaddr.c") |
|
add_executable("t_statefile" "t_statefile.c" "${SRC_DIR}/strlcpy.c" "${SRC_DIR}/matches.c" "${SRC_DIR}/ipaddr.c" "${SRC_DIR}/statefile.c" "${SRC_DIR}/log.c") |
|
add_executable("t_config_param" "t_config_param.c" "${SRC_DIR}/strlcpy.c" "${SRC_DIR}/config.c" "${SRC_DIR}/log.c") |
|
|
|
add_test("tests/f2b_buf_*" "t_buf") |
|
add_test("tests/f2b_cmd_*" "t_cmd") |
|
add_test("tests/f2b_md5_*" "t_md5") |
|
add_test("tests/f2b_matches_*" "t_matches") |
|
add_test("tests/f2b_ipaddr_*" "t_ipaddr") |
|
add_test("tests/f2b_statefile_*" "t_statefile") |
|
add_test("tests/f2b_config_param*" "t_config_param") |
|
|
|
add_executable("t_filter_preg" "t_filters.c" "${SRC_DIR}/filters/preg.c" "${SRC_DIR}/strlcpy.c" "${SRC_DIR}/fnv32a.c") |
|
add_test("tests/filter/preg" "t_filter_preg") |
|
|
|
if (WITH_PCRE) |
|
add_test("tests/filter/pcre" "t_filter_pcre") |
|
add_executable("t_filter_pcre" "t_filters.c" "${SRC_DIR}/filters/pcre.c" "${SRC_DIR}/strlcpy.c" "${SRC_DIR}/fnv32a.c") |
|
target_link_libraries("t_filter_pcre" "pcre") |
|
endif ()
|
|
|