blob: 092d02026481d17facde3f44ad44b0e59e7b6055 (
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
|
set(TestsExpectedToPass
test_parc_AtomicUint16
test_parc_AtomicUint32
test_parc_AtomicUint64
test_parc_AtomicUint8
test_parc_FutureTask
test_parc_Lock
test_parc_Notifier
test_parc_RingBuffer_1x1
test_parc_RingBuffer_NxM
test_parc_ScheduledTask
test_parc_ScheduledThreadPool
test_parc_Synchronizer
test_parc_Thread
test_parc_ThreadPool
test_parc_Timer
)
# 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()
|