Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nanopb
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
le
nanopb
Commits
d0299d87
Commit
d0299d87
authored
10 years ago
by
Petteri Aimonen
Browse files
Options
Downloads
Patches
Plain Diff
Code coverage results were ignoring the data from encode/decode unittests.
Update issue 126 Status: Started
parent
d82a264c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/Makefile
+3
-3
3 additions, 3 deletions
tests/Makefile
with
3 additions
and
3 deletions
tests/Makefile
+
3
−
3
View file @
d0299d87
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment