Michael Förderer

Results 489 comments of Michael Förderer

The condition coverage from GCC is MC/DC coverage. In your example the `std::vector v = {1, 2, 3, 4, 5};` seems to use a condition (inlined constructor?). There are also...

I would also go for @mariustache but according to https://docs.sonarsource.com/sonarqube-server/latest/analyzing-source-code/test-coverage/generic-test-data/#generic-test-coverage we can show the line overage and a branch coverage. Here we could use `sonarqube-metric=branch` as default and support `decisions`...

In the cobertura.xml we have following information about this location: ```xml ``` This sequence of hits in in the coveralls.json at line 3512 where the list starts at line 3200...

The hot sequence of line 430 to 434 is the same as in line 328 to 334. Can you generate our internal JSON trace file? With this I should be...

If I generate the JSON file with `--json-summary --json coverage.json` I see that the data model holds the correct values and the coveralls is also generated correct. Can you generate...

Now I'm really confused. If I create the report from the given JSON trace file it is correct but your coveralls.json contains several differences compared to the JSON report, e.g....

> I did that and they seem to be different. Ok, that what I've expected. But why. > After all of this, I somewhat get the feeling that there is...

That's good but I'm thinking how to build a test to investigate into this problem. Is there a dev container available for your project to build it locally?

Thanks. I'll try to reproduce this in the next days.