mirror of
https://github.com/nyanmisaka/mpp.git
synced 2026-01-24 03:10:39 +01:00
Signed-off-by: Herman Chen <herman.chen@rock-chips.com> Change-Id: I85eb166a3ebb1ae64a44c7127808fc469c6415a8
59 lines
1.5 KiB
CMake
59 lines
1.5 KiB
CMake
# vim: syntax=cmake
|
|
# ----------------------------------------------------------------------------
|
|
# mpp/base built-in unit test case
|
|
# ----------------------------------------------------------------------------
|
|
# macro for adding osal sub-module unit test
|
|
macro(add_mpp_base_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 base ${module} unit test" ${BUILD_TEST})
|
|
if(${test_tag})
|
|
add_executable(${test_name} ${test_name}.c)
|
|
target_link_libraries(${test_name} ${MPP_SHARED})
|
|
set_target_properties(${test_name} PROPERTIES FOLDER "osal/test")
|
|
add_test(NAME ${test_name} COMMAND ${test_name})
|
|
endif()
|
|
endmacro()
|
|
|
|
# task system unit test
|
|
add_mpp_base_test(mpp_task)
|
|
|
|
# mpp_buffer unit test
|
|
add_mpp_base_test(mpp_buffer)
|
|
|
|
# mpp_packet unit test
|
|
add_mpp_base_test(mpp_packet)
|
|
|
|
# mpp_meta unit test
|
|
add_mpp_base_test(mpp_meta)
|
|
|
|
# mpp_bitwriter unit test
|
|
add_mpp_base_test(mpp_bit)
|
|
|
|
# mpp_bitread unit test
|
|
add_mpp_base_test(mpp_bit_read)
|
|
|
|
# mpp_trie unit test
|
|
add_mpp_base_test(mpp_trie)
|
|
|
|
# mpp_cluster unit test
|
|
add_mpp_base_test(mpp_cluster)
|
|
|
|
# mpp_enc_cfg unit test
|
|
add_mpp_base_test(mpp_enc_cfg)
|
|
|
|
# mpp_enc_ref unit test
|
|
add_mpp_base_test(mpp_enc_ref)
|
|
|
|
# mpp_dec_cfg unit test
|
|
add_mpp_base_test(mpp_dec_cfg)
|
|
|
|
# mpp_sys_cfg unit test
|
|
add_mpp_base_test(mpp_sys_cfg)
|
|
|
|
# mpp_sys_cfgi unit test
|
|
add_mpp_base_test(mpp_sys_cfg_st)
|