2021-04-19 11:16:16 +08:00
|
|
|
# Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
|
|
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
|
|
# or implied. See the License for the specific language governing permissions and limitations under the License
|
|
|
|
|
2020-09-15 10:00:00 +08:00
|
|
|
include_directories(${CMAKE_HOME_DIRECTORY}/src)
|
2021-03-04 17:09:48 +08:00
|
|
|
include_directories(${CMAKE_HOME_DIRECTORY}/src/thirdparty)
|
|
|
|
|
|
|
|
add_definitions(-DMILVUS_TEST_SEGCORE_YAML_PATH="${CMAKE_SOURCE_DIR}/unittest/test_utils/test_segcore.yaml")
|
|
|
|
|
2022-04-08 15:29:31 +08:00
|
|
|
# TODO: better to use ls/find pattern
|
|
|
|
set(MILVUS_TEST_FILES
|
|
|
|
init_gtest.cpp
|
2022-07-01 22:28:23 +08:00
|
|
|
test_bf.cpp
|
2022-04-08 15:29:31 +08:00
|
|
|
test_binary.cpp
|
|
|
|
test_bitmap.cpp
|
|
|
|
test_bool_index.cpp
|
|
|
|
test_common.cpp
|
|
|
|
test_concurrent_vector.cpp
|
|
|
|
test_conf_adapter_mgr.cpp
|
|
|
|
test_c_api.cpp
|
|
|
|
test_expr.cpp
|
2022-07-18 09:58:28 +08:00
|
|
|
test_growing.cpp
|
2022-04-08 15:29:31 +08:00
|
|
|
test_indexing.cpp
|
|
|
|
test_index_c_api.cpp
|
|
|
|
test_index_wrapper.cpp
|
|
|
|
test_init.cpp
|
2022-06-24 21:12:15 +08:00
|
|
|
test_parquet_c.cpp
|
2022-04-08 15:29:31 +08:00
|
|
|
test_plan_proto.cpp
|
|
|
|
test_query.cpp
|
|
|
|
test_reduce.cpp
|
|
|
|
test_reduce_c.cpp
|
2022-04-29 13:35:49 +08:00
|
|
|
test_relational.cpp
|
2022-04-08 15:29:31 +08:00
|
|
|
test_retrieve.cpp
|
|
|
|
test_scalar_index.cpp
|
|
|
|
test_sealed.cpp
|
|
|
|
test_segcore.cpp
|
|
|
|
test_similarity_corelation.cpp
|
|
|
|
test_span.cpp
|
2022-04-29 13:35:49 +08:00
|
|
|
test_string_expr.cpp
|
2022-04-08 15:29:31 +08:00
|
|
|
test_timestamp_index.cpp
|
|
|
|
test_utils.cpp
|
2022-09-09 22:12:34 +08:00
|
|
|
test_data_codec.cpp
|
2022-04-08 15:29:31 +08:00
|
|
|
)
|
|
|
|
|
2022-09-21 20:16:51 +08:00
|
|
|
if ( BUILD_DISK_ANN STREQUAL "ON" )
|
|
|
|
set(MILVUS_TEST_FILES
|
|
|
|
${MILVUS_TEST_FILES}
|
|
|
|
# test_minio_chunk_manager.cpp
|
|
|
|
# test_disk_file_manager_test.cpp
|
|
|
|
test_local_chunk_manager.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2022-06-02 10:48:03 +08:00
|
|
|
if (LINUX OR APPLE)
|
2022-02-09 14:27:46 +08:00
|
|
|
set(MILVUS_TEST_FILES
|
2022-04-08 15:29:31 +08:00
|
|
|
${MILVUS_TEST_FILES}
|
2022-03-21 14:23:24 +08:00
|
|
|
test_scalar_index_creator.cpp
|
2022-04-01 15:31:29 +08:00
|
|
|
test_string_index.cpp
|
2022-02-09 14:27:46 +08:00
|
|
|
)
|
2022-04-08 15:29:31 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if (LINUX)
|
2022-02-09 14:27:46 +08:00
|
|
|
# check if memory leak exists in index builder
|
|
|
|
set(INDEX_BUILDER_TEST_FILES
|
|
|
|
test_index_wrapper.cpp
|
2022-03-21 14:23:24 +08:00
|
|
|
test_scalar_index_creator.cpp
|
|
|
|
test_index_c_api.cpp
|
2022-02-09 14:27:46 +08:00
|
|
|
)
|
2021-03-04 17:09:48 +08:00
|
|
|
|
2022-02-09 14:27:46 +08:00
|
|
|
add_executable(index_builder_test
|
|
|
|
${INDEX_BUILDER_TEST_FILES}
|
|
|
|
)
|
2020-08-27 10:08:42 +08:00
|
|
|
|
2022-02-09 14:27:46 +08:00
|
|
|
target_link_libraries(index_builder_test
|
|
|
|
gtest
|
|
|
|
gtest_main
|
|
|
|
milvus_segcore
|
|
|
|
milvus_indexbuilder
|
|
|
|
)
|
|
|
|
install(TARGETS index_builder_test DESTINATION unittest)
|
|
|
|
endif()
|
2021-03-04 17:09:48 +08:00
|
|
|
|
2022-02-09 14:27:46 +08:00
|
|
|
add_executable(all_tests
|
|
|
|
${MILVUS_TEST_FILES}
|
2021-02-23 14:35:00 +08:00
|
|
|
)
|
2021-02-20 10:14:03 +08:00
|
|
|
|
2020-09-15 10:00:00 +08:00
|
|
|
target_link_libraries(all_tests
|
|
|
|
gtest
|
2020-10-31 15:11:47 +08:00
|
|
|
milvus_segcore
|
2020-12-25 11:10:31 +08:00
|
|
|
milvus_indexbuilder
|
2020-09-15 10:00:00 +08:00
|
|
|
pthread
|
2020-10-15 21:31:50 +08:00
|
|
|
)
|
2020-12-09 09:55:56 +08:00
|
|
|
|
2021-05-28 10:39:30 +08:00
|
|
|
install(TARGETS all_tests DESTINATION unittest)
|
2021-12-07 20:17:03 +08:00
|
|
|
|
2022-04-05 12:43:30 +08:00
|
|
|
if (LINUX)
|
|
|
|
add_subdirectory(bench)
|
|
|
|
endif ()
|