2024-06-19 14:43:32 +08:00
|
|
|
add_executable(gtest_tunnel gtest_tunnel.cpp)
|
|
|
|
|
target_link_libraries(gtest_tunnel packet gtest)
|
|
|
|
|
|
2024-02-21 11:14:21 +08:00
|
|
|
add_executable(gtest_udp_utils gtest_udp_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_udp_utils packet gtest)
|
2024-01-03 09:57:06 +08:00
|
|
|
|
2024-02-21 11:49:20 +08:00
|
|
|
add_executable(gtest_tcp_utils gtest_tcp_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_tcp_utils packet gtest)
|
2023-12-22 14:54:25 +08:00
|
|
|
|
2024-02-21 14:34:34 +08:00
|
|
|
add_executable(gtest_ipv4_utils gtest_ipv4_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_ipv4_utils packet gtest)
|
2024-01-03 09:57:06 +08:00
|
|
|
|
2024-02-21 15:06:48 +08:00
|
|
|
add_executable(gtest_ipv6_utils gtest_ipv6_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_ipv6_utils packet gtest)
|
2024-01-11 16:46:33 +08:00
|
|
|
|
2024-06-02 00:07:33 +08:00
|
|
|
add_executable(gtest_mpls_utils gtest_mpls_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_mpls_utils packet gtest)
|
|
|
|
|
|
|
|
|
|
add_executable(gtest_eth_utils gtest_eth_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_eth_utils packet gtest)
|
|
|
|
|
|
2024-06-05 11:41:46 +08:00
|
|
|
add_executable(gtest_vlan_utils gtest_vlan_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_vlan_utils packet gtest)
|
|
|
|
|
|
2024-06-05 14:36:04 +08:00
|
|
|
add_executable(gtest_vxlan_utils gtest_vxlan_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_vxlan_utils packet gtest)
|
|
|
|
|
|
2024-06-05 16:44:32 +08:00
|
|
|
add_executable(gtest_gre_utils gtest_gre_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_gre_utils packet gtest)
|
|
|
|
|
|
2024-06-07 14:47:38 +08:00
|
|
|
add_executable(gtest_l2tp_utils gtest_l2tp_utils.cpp)
|
|
|
|
|
target_link_libraries(gtest_l2tp_utils packet gtest)
|
|
|
|
|
|
2024-03-09 19:28:14 +08:00
|
|
|
add_executable(gtest_packet_frag gtest_packet_frag.cpp)
|
|
|
|
|
target_link_libraries(gtest_packet_frag packet gtest)
|
2023-12-29 15:15:18 +08:00
|
|
|
|
2024-07-02 10:09:54 +08:00
|
|
|
add_executable(gtest_packet_parse gtest_packet_parse.cpp)
|
|
|
|
|
target_link_libraries(gtest_packet_parse packet gtest)
|
|
|
|
|
|
2024-07-03 10:14:00 +08:00
|
|
|
add_executable(gtest_packet_build gtest_packet_build.cpp)
|
|
|
|
|
target_link_libraries(gtest_packet_build packet gtest)
|
|
|
|
|
|
2024-07-02 10:09:54 +08:00
|
|
|
add_executable(gtest_packet_ldbc gtest_packet_ldbc.cpp)
|
|
|
|
|
target_link_libraries(gtest_packet_ldbc packet gtest)
|
|
|
|
|
|
2023-12-22 14:54:25 +08:00
|
|
|
include(GoogleTest)
|
2024-06-19 14:43:32 +08:00
|
|
|
gtest_discover_tests(gtest_tunnel)
|
2024-02-21 11:14:21 +08:00
|
|
|
gtest_discover_tests(gtest_udp_utils)
|
2024-02-21 11:49:20 +08:00
|
|
|
gtest_discover_tests(gtest_tcp_utils)
|
2024-02-21 14:34:34 +08:00
|
|
|
gtest_discover_tests(gtest_ipv4_utils)
|
2024-02-21 15:06:48 +08:00
|
|
|
gtest_discover_tests(gtest_ipv6_utils)
|
2024-06-02 00:07:33 +08:00
|
|
|
gtest_discover_tests(gtest_mpls_utils)
|
|
|
|
|
gtest_discover_tests(gtest_eth_utils)
|
2024-06-05 11:41:46 +08:00
|
|
|
gtest_discover_tests(gtest_vlan_utils)
|
2024-06-05 14:36:04 +08:00
|
|
|
gtest_discover_tests(gtest_vxlan_utils)
|
2024-06-05 16:44:32 +08:00
|
|
|
gtest_discover_tests(gtest_gre_utils)
|
2024-06-07 14:47:38 +08:00
|
|
|
gtest_discover_tests(gtest_l2tp_utils)
|
2024-07-02 10:09:54 +08:00
|
|
|
gtest_discover_tests(gtest_packet_frag)
|
|
|
|
|
gtest_discover_tests(gtest_packet_parse)
|
2024-07-03 10:14:00 +08:00
|
|
|
gtest_discover_tests(gtest_packet_build)
|
2024-07-02 10:09:54 +08:00
|
|
|
gtest_discover_tests(gtest_packet_ldbc)
|