我使用llvm实用程序进行了代码覆盖率测试。之后,我需要做一个html封面文件。我用了命令
llvm-cov show test -instr-profile=default.profdata -format=html > report.html
然后我收到以下错误:
未知的命令行参数' -format = html'。
我如何解决我的问题?
答案 0 :(得分:1)
根据documentation,语法是
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