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

set(TestsExpectedToPass
	test_rta_ConnectionTable 
	test_rta_Framework 
	test_rta_Framework_Commands 
	test_rta_Component 
	test_rta_Connection 
	test_rta_Framework_NonThreaded 
	test_rta_Framework_Services 
	test_rta_Framework_Threaded 
	test_rta_Logger 
	test_rta_ProtocolStack 
	test_rta_ComponentStats
)

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