I did a code coverage test using the llvm utility. After that, I needed to do a html cover file. I used the command
llvm-cov show test -instr-profile=default.profdata -format=html > report.html
Then I received the following error:
Unknown command line argument '-format=html'.
How I can solve my problem ?
According to the documentation the syntax is
so the option
-format=htmlneeds to go before the profile and binary name.