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

set(TestsExpectedToPass
  test_ccnx_ChunkingFacadeV1
  test_ccnx_ContentObjectFacadeV1
  test_ccnx_ContentObjectInterface
  test_ccnx_InterestFacadeV1
  test_ccnx_InterestInterface
  test_ccnx_InterestReturnFacadeV1
  test_ccnx_InterestReturnInterface
  test_ccnx_ManifestFacadeV1
  test_ccnx_ManifestInterface
  test_ccnx_TlvDictionary
  test_ccnx_ValidationFacadeV1
  test_ccnx_WireFormatFacadeV1
)

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