aboutsummaryrefslogtreecommitdiffstats
path: root/libccnx-common/ccnx/common/codec/schema_v1/test/CMakeLists.txt
blob: c827a36e7a1e029beac7e1aa2d93f21e6947fa78 (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
25
26
27
28
29
# Enable gcov output for the tests
add_definitions(--coverage)
set(CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS} " --coverage")

set(TestsExpectedToPass
  test_ccnxCodecSchemaV1_CryptoSuite
  test_ccnxCodecSchemaV1_FixedHeaderDecoder
  test_ccnxCodecSchemaV1_FixedHeaderEncoder
  test_ccnxCodecSchemaV1_HashCodec
  test_ccnxCodecSchemaV1_LinkCodec
  test_ccnxCodecSchemaV1_ManifestDecoder
  test_ccnxCodecSchemaV1_ManifestEncoder
  test_ccnxCodecSchemaV1_MessageDecoder
  test_ccnxCodecSchemaV1_MessageEncoder
  test_ccnxCodecSchemaV1_NameCodec
  test_ccnxCodecSchemaV1_NameSegmentCodec
  test_ccnxCodecSchemaV1_OptionalHeadersDecoder
  test_ccnxCodecSchemaV1_OptionalHeadersEncoder
  test_ccnxCodecSchemaV1_PacketDecoder
  test_ccnxCodecSchemaV1_PacketEncoder
  test_ccnxCodecSchemaV1_TlvDictionary
  test_ccnxCodecSchemaV1_ValidationDecoder
  test_ccnxCodecSchemaV1_ValidationEncoder
)


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