Files
mpp/test/CMakeLists.txt
Herman Chen e2fa6e0232 [test]: Add mpi_enc_mt_test
Add encoder multi-thread test case for non-block input / output mode.

Change-Id: I2a06f47574e760d1400914eb62420b047c60ceaf
Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
2022-03-03 11:43:54 +08:00

67 lines
2.2 KiB
CMake

# vim: syntax=cmake
# ----------------------------------------------------------------------------
# mpp built-in unit test case
# ----------------------------------------------------------------------------
# macro for adding mpp sub-module unit test
macro(add_mpp_test module ext)
set(test_name ${module}_test)
set(file_name ${test_name}.${ext})
string(TOUPPER ${test_name} test_tag)
#message(STATUS "moduule : ${module}")
#message(STATUS "test_name : ${test_name}")
#message(STATUS "test_tag : ${test_tag}")
option(${test_tag} "Build mpp ${module}.${ext} unit test" ${BUILD_TEST})
if(${test_tag})
add_executable(${test_name} ${file_name} mpp_event_trigger.c mpp_parse_cfg.c)
target_link_libraries(${test_name} ${MPP_SHARED} utils)
set_target_properties(${test_name} PROPERTIES FOLDER "test")
install(TARGETS ${test_name} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
#add_test(NAME ${test_name} COMMAND ${test_name})
endif()
endmacro()
# mpp info test
add_mpp_test(mpp_info c)
# mpi decoder unit test
add_mpp_test(mpi_dec c)
# mpi decoder multi-thread input / output unit test
add_mpp_test(mpi_dec_mt c)
# mpi encoder unit test
add_mpp_test(mpi_enc c)
# mpi encoder multi-thread input / output unit test
add_mpp_test(mpi_enc_mt cpp)
# new mpi rc unit test
add_mpp_test(mpi_rc2 c)
# new dec multi unit test
add_mpp_test(mpi_dec_multi c)
macro(add_legacy_test module)
set(test_name ${module}_test)
string(TOUPPER ${test_name} test_tag)
#message(STATUS "moduule : ${module}")
#message(STATUS "test_name : ${test_name}")
#message(STATUS "test_tag : ${test_tag}")
option(${test_tag} "Build legacy ${module} unit test" ${BUILD_TEST})
if(${test_tag})
add_executable(${test_name} ${test_name}.c)
if(ASAN_CHECK)
target_link_libraries(${test_name} ${ASAN_LIB} pthread dl)
else(ASAN_CHECK)
target_link_libraries(${test_name} dl)
endif(ASAN_CHECK)
set_target_properties(${test_name} PROPERTIES FOLDER "test")
install(TARGETS ${test_name} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()
endmacro()
# legacy vpu_api unit test
add_legacy_test(vpu_api)