We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running CMake once or twice with the COVERAGE option set produces different results
cmake -DCOVERAGE:BOOL=ON ./&& make && make tests && ctest find . -iname '*gcno' | wc -l find . -iname '*gcda' | wc -l grep -Rni 'coverage' CMakeFiles/* | wc -l
outputs
1 0 2
whereas
cmake -DCOVERAGE:BOOL=ON && cmake -DCOVERAGE:BOOL=ON ./ && make && make tests && ctest find . -iname '*gcno' | wc -l find . -iname '*gcda' | wc -l grep -Rni 'coverage' CMakeFiles/* | wc -l
172 54 3
For more context please see eddyxu/cpp-coveralls#111 (comment)
The text was updated successfully, but these errors were encountered:
As per GlPortal#175 only cmake has
e9559b3
to be run twice, ctest and make do not.
No branches or pull requests
Running CMake once or twice with the COVERAGE option set produces different results
outputs
whereas
outputs
For more context please see
eddyxu/cpp-coveralls#111 (comment)
The text was updated successfully, but these errors were encountered: