aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/logging/test/CMakeLists.txt
blob: 060a0ba1f5d3b2d2277b70e276c247a016179baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set(TestsExpectedToPass
  test_parc_Log
  test_parc_LogEntry
  test_parc_LogFormatSyslog
  test_parc_LogFormatText
  test_parc_LogLevel
  test_parc_LogReporter
  test_parc_LogReporterFile
  test_parc_LogReporterTextStdout
  )

# 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()