1

我使用 llvm 实用程序进行了代码覆盖率测试。之后,我需要做一个 html 封面文件。我使用了命令

llvm-cov show test -instr-profile=default.profdata -format=html > report.html

然后我收到以下错误:

未知的命令行参数“-format=html”。

我怎样才能解决我的问题?

4

1 回答 1

1

根据文档,语法是

llvm-cov show [options] -instr-profile PROFILE BIN [-object BIN,…] [[-object BIN]] [SOURCES]

所以该选项-format=html需要放在配置文件和二进制名称之前。

llvm-cov show -format=html -instr-profile default.profdata test > report.html
于 2018-02-16T23:56:36.953 回答