1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

end_to_end_test initial commit.

This commit is contained in:
Ben Thompson
2019-02-08 15:15:37 -06:00
parent 5528aba68a
commit 668f83c163
3 changed files with 575 additions and 0 deletions

5
utils/cloudio/CMakeLists.txt Normal file → Executable file
View File

@ -15,6 +15,8 @@ install(TARGETS cloudio DESTINATION ${ENGINE_LIBDIR} COMPONENT libs)
add_executable(cloudio_component_test component_test.cpp)
add_executable(end_to_end_test end_to_end_test.cpp)
# see the comment above and change this dependency to cloudio. Hm
# our lib dependencies seem not to be declared. Punting on that,
# maybe in the future we can have some poor unfortunate intern
@ -22,5 +24,8 @@ add_executable(cloudio_component_test component_test.cpp)
# For now I'm going to do like the other executables, which means
# nearly everything AFAICT.
target_link_libraries(cloudio_component_test ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS} ${MARIADB_CLIENT_LIBS} cloudio)
target_link_libraries(end_to_end_test ${ENGINE_LDFLAGS} ${ENGINE_EXEC_LIBS} ${MARIADB_CLIENT_LIBS} cloudio)
#target_link_libraries(cloudio_component_test cloudio)
# Copy end_to_end_test dataFile to binary directory
FILE(COPY testData DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/)