Commit 56cc4ea5 authored by jinhai's avatar jinhai
Browse files

Merge branch 'rename_test' into 'branch-0.5.0'

MS-565 rename test->unittest and fix parameter autotune bug

See merge request megasearch/milvus!643

Former-commit-id: 36d9ea3c25f1cf080cd63f70eccb352ec0f6bc3f
parents dd048c25 c2ab2bc0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ endif()
set(CORE_INCLUDE_DIRS ${CORE_INCLUDE_DIRS} PARENT_SCOPE)

if(BUILD_UNIT_TEST STREQUAL "ON")
    add_subdirectory(test)
    add_subdirectory(unittest)
endif()

config_summary()
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ set(util_srcs
        ${CORE_SOURCE_DIR}/knowhere/knowhere/adapter/ArrowAdapter.cpp
        ${CORE_SOURCE_DIR}/knowhere/knowhere/common/Exception.cpp
        ${CORE_SOURCE_DIR}/knowhere/knowhere/common/Timer.cpp
        ${CORE_SOURCE_DIR}/test/utils.cpp
        ${CORE_SOURCE_DIR}/unittest/utils.cpp
        )

#<IVF-TEST>
Loading