CMake 和 lcov:未找到 gcno 文件
Posted
技术标签:
【中文标题】CMake 和 lcov:未找到 gcno 文件【英文标题】:CMake and lcov: gcno files not found 【发布时间】:2012-02-22 12:05:04 【问题描述】:我正在尝试获取基于 CMake 的项目(由多个目标组成)的代码覆盖率。
首先我生成 gcno 文件:
lcov -b . -d . -o coverage.output --capture --initial
*.gcno是在
中生成的build_dir/[target_dir]/CMakeFiles/[target_dir].dir
然后我运行生成 *.gcna 文件的测试
build_dir/tests/CMakeFiles/[target_dir].dir
当我现在再次运行 lcov 时:
lcov -b . -d . -o coverage.output --capture
我收到以下错误:
Scanning . for .gcda files ...
Found 23 data files in .
Processing Base.dir/DateTools.cpp.gcda
geninfo: ERROR: build_gcov/tests/CMakeFiles/Base.dir/DateTools.cpp.gcno: could not open file
当我手动将 *.gcno 文件移动到生成 *.gcda 的目录时,它似乎可以工作。
感谢您的帮助!!!
【问题讨论】:
【参考方案1】:我已经弄清楚如何在 CMake 中使用 lcov 并将所有内容捆绑在 cmake module 中。
【讨论】:
谢谢,对于 gcovr,您的方法更简单。以上是关于CMake 和 lcov:未找到 gcno 文件的主要内容,如果未能解决你的问题,请参考以下文章
使用 gcov/lcov/gcovr 在 Android APK 下获取代码覆盖率
使用 gcov/lcov/gcovr 在 Android APK 下获取代码覆盖率