I am using gcovr to generate the coverage analysis of some unit tests, and wanted to generate the HTML decision coverage report. I am using Matlab, and am calling gcov and gcovr and generating the report following the instructions in the gcov 5.1 user's manual:
[status,report] = system([path_to_my_function,' & gcovr --gcov-executable gcov --decisions --html-details -o',name_of_my_html_report])
However, I am getting all the time an error saying that --decisions command is not defined for gcov. I have been trying different locations for the command, but didn't work, and looking on the Internet, but didn't find anything.
Does anybody have an idea of the possible error I may be doing?
Thank you!