I am very new to Code Coverage and the tools that I am using currently. I was using the bullseye coverage to evaluate the code coverage for a simple "hello world" code. After compiling the code, I tried to open the .cov file and it shows 0% code coverage? The commands that I have used are 1) set COVFILE=c:.......\test.cov 2) gcc -c main.c 3) covc gcc -c main.c
After writing these commands, I can see the test.cov file being generated but the coverage browser shows 0% code coverage. Am I missing out something ? I mean the main.c has only main() and it is not getting called? How come?