Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试研究在 Jenkins 框架上运行的 C++ 代码覆盖工具。你能介绍一些工具吗?
您可以使用 GCOV + LCOV 来计算代码覆盖率。Gcov 用于生成所有信息,lcov 用于生成结果(html)。对于公共 HTML,使用标准的构建后操作“发布 HTML”
GCOV:链接
LCOV:链接
PS这一切都是为了Linux。
我们已经成功地将 Parasoft 与 Jenkins 一起使用。