mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-08 10:30:04 +08:00

Add multi-instance test case with multi-thread decoding. This test case is mainly for platform performance evaluation. Change-Id: I79d86a01778c2e7af00e13d1d3c3d2937bcbbcce Signed-off-by: sliver.chen <sliver.chen@rock-chips.com> Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
66 lines
2.0 KiB
CMake
66 lines
2.0 KiB
CMake
# vim: syntax=cmake
|
|
# ----------------------------------------------------------------------------
|
|
# mpp built-in unit test case
|
|
# ----------------------------------------------------------------------------
|
|
# macro for adding mpp sub-module unit test
|
|
macro(add_mpp_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 mpp ${module} unit test" ON)
|
|
if(${test_tag})
|
|
add_executable(${test_name} ${test_name}.c 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()
|
|
|
|
# mpi unit test
|
|
add_mpp_test(mpi)
|
|
|
|
# mpi decoder unit test
|
|
add_mpp_test(mpi_dec)
|
|
|
|
# mpi decoder multi-thread input / output unit test
|
|
add_mpp_test(mpi_dec_mt)
|
|
|
|
# mpi encoder unit test
|
|
add_mpp_test(mpi_enc)
|
|
|
|
# mpi rc unit test
|
|
add_mpp_test(mpi_rc)
|
|
|
|
# new mpi rc unit test
|
|
add_mpp_test(mpi_rc2)
|
|
|
|
# new enc multi unit test
|
|
add_mpp_test(mpi_enc_multi)
|
|
|
|
# new dec multi unit test
|
|
add_mpp_test(mpi_dec_multi)
|
|
|
|
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" ON)
|
|
if(${test_tag})
|
|
add_executable(${test_name} ${test_name}.c)
|
|
target_link_libraries(${test_name} ${VPU_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()
|
|
|
|
# legacy vpu_api unit test
|
|
add_legacy_test(vpu_api)
|