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

set(TestsExpectedToPass
	test_rta_Command
	test_rta_CommandOpenConnection 
	test_rta_CommandCloseConnection 
	test_rta_CommandDestroyProtocolStack 
	test_rta_CommandTransmitStatistics
)

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