aboutsummaryrefslogtreecommitdiffstats
path: root/metis/ccnx/forwarder/metis/content_store/test/CMakeLists.txt
blob: 0542732d1db795d952f48247c261a746a7512089 (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_metis_LruList
	test_metis_ContentStoreEntry
	test_metis_ContentStoreInterface
	test_metis_TimeOrderedList
	test_metis_LRUContentStore
)


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