File tree Expand file tree Collapse file tree 4 files changed +19
-17
lines changed Expand file tree Collapse file tree 4 files changed +19
-17
lines changed Original file line number Diff line number Diff line change 59
59
! core.h
60
60
TAGS
61
61
62
+ CMakeUserPresets.json
62
63
CPackConfig.cmake
63
64
CPackSourceConfig.cmake
64
65
CTestTestfile.cmake
Original file line number Diff line number Diff line change @@ -279,8 +279,6 @@ set(ARANGODB_TESTS_SOURCES
279
279
VocBase/VersionTest.cpp
280
280
VocBase/VocbaseTest.cpp
281
281
VPackDeserializer/BasicTests.cpp
282
- Zkd/Conversion.cpp
283
- Zkd/Library.cpp
284
282
Cluster/ShardAutoRebalancerTest.cpp )
285
283
286
284
if (LINUX )
@@ -313,6 +311,7 @@ target_link_libraries(arangodbtests
313
311
arango_tests_replication2
314
312
arango_tests_graph
315
313
arango_tests_futures
314
+ arango_tests_zkd
316
315
arango_agency
317
316
arango_cluster_engine
318
317
arango_rocksdb
Original file line number Diff line number Diff line change @@ -2,20 +2,18 @@ add_library(arango_tests_futures OBJECT
2
2
FutureTest.cpp
3
3
PromiseTest.cpp
4
4
TryTest.cpp )
5
-
6
5
target_link_libraries (arango_tests_futures
6
+ PRIVATE
7
7
arango_futures
8
8
gtest
9
9
velocypack
10
10
fmt )
11
11
12
- add_executable (arangodbtests_futures
13
- EXCLUDE_FROM_ALL )
14
-
12
+ add_executable (arangodbtests_futures EXCLUDE_FROM_ALL )
15
13
target_link_libraries (arangodbtests_futures
16
- arango_crashhandler_light
17
- gtest_main
18
- arango_tests_futures )
14
+ arango_crashhandler_light
15
+ gtest_main
16
+ arango_tests_futures )
19
17
20
18
add_test (NAME futures
21
19
COMMAND arangodbtests_futures )
Original file line number Diff line number Diff line change 1
- add_executable ( arangodbtests_zkd EXCLUDE_FROM_ALL
1
+ add_library ( arango_tests_zkd OBJECT
2
2
Conversion.cpp
3
- Library.cpp
4
- main.cpp )
3
+ Library.cpp )
4
+ target_link_libraries (arango_tests_zkd
5
+ PRIVATE
6
+ arango_rocksdb
7
+ gtest )
8
+ target_include_directories (arango_tests_zkd
9
+ PRIVATE
10
+ ${PROJECT_SOURCE_DIR} /arangod )
5
11
12
+ add_executable (arangodbtests_zkd EXCLUDE_FROM_ALL )
6
13
target_link_libraries (arangodbtests_zkd
7
- arango_rocksdb
8
- gtest )
9
-
10
- target_include_directories (arangodbtests_zkd PRIVATE
11
- ${PROJECT_SOURCE_DIR} /arangod )
14
+ arango_tests_zkd
15
+ gtest_main )
12
16
13
17
add_test (NAME zkd
14
18
COMMAND arangodbtests_zkd )
You can’t perform that action at this time.
0 commit comments