diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-09-07 19:25:09 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-09-07 19:25:09 +0300 |
commit | d0299d87ec109c83480f857d2a1ce66d52834926 (patch) | |
tree | bdc5f590326c7da5fc6be3f7217fbca254910ee9 /tests | |
parent | d82a264c416f5ce64c611b48888eb84316e3445f (diff) |
Code coverage results were ignoring the data from encode/decode unittests.
Update issue 126
Status: Started
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Makefile b/tests/Makefile index 3c4e0b04..cee6bf67 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -10,12 +10,12 @@ coverage: # LCOV does not like the newer gcov format scons CC=gcc-4.6 CXX=gcc-4.6 - # We are only interested in pb_encode.o and pb_decode.o - find build -name '*.gcda' -and \! \( -name '*pb_encode*' -or -name '*pb_decode*' \) -exec rm '{}' \; - # Collect the data mkdir build/coverage lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/nanopb.info + # Remove the test code from results + lcov -r build/coverage/nanopb.info '*tests*' -o build/coverage/nanopb.info + # Generate HTML genhtml -o build/coverage build/coverage/nanopb.info |