gpt4 book ai didi

c++ - 无法使用 include(ctest) 构建测试单元?

转载 作者:太空宇宙 更新时间:2023-11-04 11:57:07 25 4
gpt4 key购买 nike

我的项目结构是https://github.com/yumyai/cmake-sample .它类似于此线程中的项目 CMake: Project structure with unit tests .

每当我将 include(CTest) 添加到顶级 CMakeLists.txt 中时,我都无法构建测试文件(make test 不会构建任何内容)。但是,如果我注释掉 include(CTest),我可以使用 make test 构建单元测试执行程序。

这是正常行为还是我忘记了什么?

最佳答案

您的示例看起来不错 - 无论有没有 include(CTest) 行,它都应该可以工作。

可能是修改CMakeLists.txt后没有重新编译,所以看起来make test什么也没做?

如果省略 include(CTest) 行并执行 make test,则 ctest -N 应该输出如下内容:

 Test project <path to build>

Total Tests: 0

如果您添加 include(CTest) 行并执行 make test,那么 ctest -N 应该输出如下内容:

 Test project <path to build>
Test #1: SqrTest

Total Tests: 1

这应该是唯一的区别 - 测试是否已在 CTest 中注册。在每种情况下,如果 make test 之前已成功运行,那么 make test 真正具有的唯一效果就是重新运行 CMake。如果运行之间 CMakeLists.txt 中的更改不影响实际测试目标,则不会重建它。

关于c++ - 无法使用 include(ctest) 构建测试单元?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15737196/

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