e26456d5ad
Summary: It occurred that part of the durability flakyness test might be that the same durability directory is used always. If the test is run simultaneously on a single system, there will be interference. This might not actually fix all the flakyness :( I also made the `utils::RandomString` function since that's now used in multiple places, tested it etc. Reviewers: buda, dgleich Reviewed By: dgleich Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1020
40 lines
1.7 KiB
CMake
40 lines
1.7 KiB
CMake
include_directories(SYSTEM ${GTEST_INCLUDE_DIR})
|
|
|
|
add_executable(mg_recovery_check
|
|
mg_recovery_check.cpp
|
|
${memgraph_src_dir}/communication/bolt/v1/decoder/decoded_value.cpp
|
|
${memgraph_src_dir}/data_structures/concurrent/skiplist_gc.cpp
|
|
${memgraph_src_dir}/database/graph_db.cpp
|
|
${memgraph_src_dir}/database/graph_db_config.cpp
|
|
${memgraph_src_dir}/database/graph_db_accessor.cpp
|
|
${memgraph_src_dir}/durability/paths.cpp
|
|
${memgraph_src_dir}/durability/recovery.cpp
|
|
${memgraph_src_dir}/durability/snapshooter.cpp
|
|
${memgraph_src_dir}/durability/wal.cpp
|
|
${memgraph_src_dir}/query/typed_value.cpp
|
|
${memgraph_src_dir}/storage/edge_accessor.cpp
|
|
${memgraph_src_dir}/storage/locking/record_lock.cpp
|
|
${memgraph_src_dir}/storage/property_value.cpp
|
|
${memgraph_src_dir}/storage/record_accessor.cpp
|
|
${memgraph_src_dir}/storage/vertex_accessor.cpp
|
|
${memgraph_src_dir}/transactions/engine_master.cpp
|
|
${memgraph_src_dir}/transactions/engine_worker.cpp
|
|
)
|
|
|
|
target_link_libraries(mg_recovery_check stdc++fs Threads::Threads fmt glog
|
|
gflags cppitertools)
|
|
target_link_libraries(mg_recovery_check gtest gtest_main)
|
|
|
|
# Copy CSV data to CMake build dir
|
|
configure_file(csv/comment_nodes.csv csv/comment_nodes.csv COPYONLY)
|
|
configure_file(csv/forum_nodes.csv csv/forum_nodes.csv COPYONLY)
|
|
configure_file(csv/relationships_0.csv csv/relationships_0.csv COPYONLY)
|
|
configure_file(csv/relationships_1.csv csv/relationships_1.csv COPYONLY)
|
|
# Copy the actual runner to CMake build dir
|
|
configure_file(test_mg_import_csv test_mg_import_csv COPYONLY)
|
|
|
|
add_test(NAME test_mg_import_csv
|
|
COMMAND test_mg_import_csv
|
|
--mg-import-csv ../src/mg_import_csv
|
|
--mg-recovery-check ./mg_recovery_check)
|