尝试在 Windows 命令行中运行 lcov 时不断收到 gcov 错误
我想知道为了在 Windows 命令行中运行 lcov 实际上还需要什么?每次运行 perl lcov 时,我总是收到类似于以下内容的提醒或错误:
geninfo: ERROR: need tool gcov!
我查看了 bin 目录,但找不到 gcov.exe。
我通常使用 perl genhtml filename 来获取 javascript 的 html 测试覆盖率报告。我试图看看是否可以执行 perl lcov,因为我可能想将多个 lcov 文件合并为一个(并获得总测试覆盖率)。
谢谢。
I was wondering what else is actually needed in order to run lcov in windows command line? Every time when I run perl lcov, I always get a reminder or errors similar to the following:
geninfo: ERROR: need tool gcov!
I looked into my bin directory, and couldn't find a gcov.exe.
I normally do perl genhtml filename to get a html test coverage report of my javascript. I was trying to see if I can do perl lcov as I might want to combine several lcov files into one (and get the total test coverage).
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您确实需要 gcov,不是吗!
(对于 cygwin,它看起来是 gcc4-core 包的一部分。)
It sure does look like you need gcov, doesn't it!
(For cygwin, it looks to be part of the gcc4-core package.)