-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generating the lcov database format from kcov #360
Comments
Well, it was originally meant to produce just that. I think the color-scheme is slightly different, but otherwise it should be basically the same. There are some things in lcov/gcov which are difficult to support with kcov, since it doesn't do branch coverage. Or is there some other feature you're looking for? I'll admit I'm not really up-to-date with lcov, haven't been using it for 10 years or so :-) |
I noticed kcov produces "sonarqube" file and |
Yes, that would be a good reason. I understand what you mean now, so it's the database format itself, and not the HTML reports which are needed. I'll rename this issue to something like that. As for vscode, I use coverage gutters with kcov. It supports cobertura, so I just make sure to copy the cobertura.xml / cov.xml to the .vscode-directory and then it works out of the box. The file needs to be named cov.xml. |
Oh, great. Scratch this one then. I also have gutters displayed in red and green now in VS Code. |
It can be useful anyway, so I'll keep it open. Not sure when I'll get round to it though (hey, real work takes time it seems! :-)). Off-topic question: For me, coverage gutters displays really slowly, have you managed to workaround that some way? I've seen bug reports in the coverage gutters github project about it, but it seems unconclusive to me. |
I know. You did amazing job on this one, I don't even know where would I start with this 😸 .
Well, I'm using
Personally for me wasn't slow, I only use option to display coverage, I don't use Coverage Guttes: Watch to have it constantly read if coverage file change. Maybe setting everything to exact path of generated report instead of leaving it as wildcard (**) can speed things up 😕 |
Hello.
While using
kcov
, I noticed it produces several formats of coverage. Is there a way to produce lcov style coverge report usingkcov
?Thank you.
The text was updated successfully, but these errors were encountered: