Michael Förderer
Michael Förderer
I see here that ccache is used. Can you try to build and run without using ccache?
This seems to be a gcov bug which can't be solved by gcovr. Even if the gcov tool is called in the correct directory the wrong path is written to...
Closing because of no response.
You can add `GCOVR_EXCL_START` and `GCOVR_EXCL_STOP` around the functions which shall be excluded. See also https://gcovr.com/en/stable/guide.html#exclusion-markers.
At the moment you can use `--exclude-lines-by-pattern` but you have to create one big regular expression to match all the lines. to exclude from coverage. I did a quick check...
The problem is not the one or two passes. We use for now the text output and we do not have the information where a function ends.
I've played a little bit based on #766 where we have the function informations available. I'm able to add a comment on the line of the function definition to ignore...
Sorry, from this log I don't see an issue with a hyphen. For me it looks more lake a misconfiguration because gcov is trying to create the file in the...
Can you execute the command `gcov /Users/macdev/builds/uyt5Zwhj/0/application-library/jsobject/build/test/CMakeFiles/jsObject_test.dir/jsUuid_test.cpp.gcda --branch-counts --branch-probabilities --all-blocks --demangled-names --hash-filenames --object-directory build/test/CMakeFiles/jsObject_test.dir` in `/Users/macdev/builds/uyt5Zwhj/0/application-library/jsobject` and check the output? @latk I'm wondering here why the exception is matched and...
I prepared a branch to get all the error messages from the gcov executions. Please can you try https://github.com/Spacetown/gcovr/tree/catch_additional_gcov_error?