aboutsummaryrefslogtreecommitdiffstats
path: root/metis/ccnx/forwarder/metis/test/CMakeLists.txt
blob: 9cdcac48ab54de6a15cb471f9fdd1daf4b634102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Enable gcov output for the tests
add_definitions(--coverage)
set(CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS} " --coverage")

set(TestsExpectedToPass
	test_sys_Errors
	test_sys_EtherEndToEnd
	test_sys_TcpEndToEnd
	test_sys_UdpEndToEnd
	test_sys_TcpTunnel
)

foreach(test ${TestsExpectedToPass})
   AddTest(${test})
endforeach()