blob: af8b6f7e09c9db58a5b3733c8bfb2bed0e73416d (
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
30
31
32
33
34
35
36
37
38
|
#
# Copyright (C) 2018 Codership Oy <info@codership.com>
#
add_executable(wsrep-lib_test
mock_client_state.cpp
mock_high_priority_service.cpp
mock_storage_service.cpp
test_utils.cpp
buffer_test.cpp
gtid_test.cpp
id_test.cpp
nbo_test.cpp
rsu_test.cpp
server_context_test.cpp
toi_test.cpp
transaction_test.cpp
transaction_test_2pc.cpp
transaction_test_xa.cpp
view_test.cpp
xid_test.cpp
wsrep-lib_test.cpp
)
target_link_libraries(wsrep-lib_test wsrep-lib)
add_test(NAME wsrep-lib_test
COMMAND wsrep-lib_test)
if (WSREP_LIB_WITH_AUTO_TEST)
set(UNIT_TEST wsrep-lib_test)
add_custom_command(
TARGET ${UNIT_TEST}
COMMENT "Run tests"
POST_BUILD
COMMAND ${UNIT_TEST}
)
endif()
|