gpt4 book ai didi

cmake ctest生成

转载 作者:行者123 更新时间:2023-11-28 21:27:31 27 4
gpt4 key购买 nike

我正在使用 CMake 和 ctest 一起生成软件测试。作为一个例子,我有一个二进制 foo 它正好是三个输入参数p1p2p3。参数范围为 0-2。使用 p1p2p3 的所有可能组合检查我的二进制文件 foo我在我的 CMakeList.txt 中执行以下操作

foreach(P1 0 1 2)
foreach(P2 0 1 2)
foreach(P3 0 1 2)
add_test(foo-p1${P1}-p2${P2}-p3${P3} foo ${P1} ${P2} ${P3})
endforeach(P3)
endforeach(P2)
endforeach(P3)

是否有更“优雅”的方式来生成所有这些不同的测试?假设 foo 需要 10 个参数 p1,...,p10 这看起来很糟糕。提前致谢。

最佳答案

您可以使用递归函数使测试的生成“更优雅”:

#  generate_tests n [...]
#
# Generate test for each combination of numbers in given range(s).
#
# Names of generated tests are ${test_name}-${i}[-...]
# Commands for generated test are ${test_command} ${i} [...]
#
# Variables `test_name` and `test_command` should be set before function's call.
function(generate_tests n)
set(rest_args ${ARGN})
list(LENGTH rest_args rest_args_len)
foreach(i RANGE ${n})
set(test_name "${test_name}-${i}")
list(APPEND test_command ${i})
if(rest_args_len EQUAL 0)
add_test(${test_name} ${test_command}) # Final step
else()
generate_tests(${test_args}) # Recursive step
endif()
endforeach()
endfunction()

# Usage example 1
set(test_name foo)
set(test_command foo)
generate_tests(2 2 2) # Will generate same tests as in the question post

# Usage example 2
set(test_name bar)
set(test_command bar arg_first ) # `arg_first` will prepend generated command's parameters.
generate_tests(1 2 1 1 1 1 1 1 1 1) # 10 Ranges for generation. 3 * 2^9 = 1536 tests total.

请注意,在第二种情况下(迭代有 10 个参数)测试总数相对较大 (1536)。在这种情况下,CMake 配置可能会很慢。

通常,此类可扩展测试由专门的测试系统执行。 CTest(使用命令 add_test 生成测试)是一个简化的测试系统,具有一些功能。

关于cmake ctest生成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35775626/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com