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

set(TestsExpectedToPass
  test_ccnxValidation_CRC32C
  test_ccnxValidation_EcSecp256K1
  test_ccnxValidation_HmacSha256
  test_ccnxValidation_RsaSha256
)

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