mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-12-26 11:17:44 +01:00
Signed-off-by: Herman Chen <herman.chen@rock-chips.com> Change-Id: Ic6c6988dad82836cfb87113f2293bc9a2b1abd66
41 lines
1.2 KiB
CMake
41 lines
1.2 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_bitwriter unit test
|
|
add_mpp_base_test(mpp_bit)
|
|
|
|
# mpp_trie unit test
|
|
add_mpp_base_test(mpp_trie)
|
|
|
|
# mpp_enc_cfg unit test
|
|
add_mpp_base_test(mpp_enc_cfg)
|
|
|
|
# mpp_enc_ref unit test
|
|
add_mpp_base_test(mpp_enc_ref)
|