aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/testing/test/CMakeLists.txt
blob: 1de2e89dec1eb8e27bb3eb0d2ec3cd4f59c19ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set(TestsExpectedToPass
  test_parc_MemoryTesting
  test_parc_ObjectTesting
  )

# Enable gcov output for the tests
add_definitions(--coverage)
set(CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS} " --coverage")

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