diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2014-12-18 18:21:29 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2014-12-18 18:21:29 +1100 |
commit | c652989453649b8d27f85dcfb882efcec8dbf64d (patch) | |
tree | d6e881c2017b4355ffd08cc0c85ca7f7c2395fd7 /Makefile.main | |
parent | 1f91d6796676dc75188011f6ef4d09fc8dd81a29 (diff) | |
download | skiboot-c652989453649b8d27f85dcfb882efcec8dbf64d.zip skiboot-c652989453649b8d27f85dcfb882efcec8dbf64d.tar.gz skiboot-c652989453649b8d27f85dcfb882efcec8dbf64d.tar.bz2 |
Run the CCAN unit tests and add to coverage-report
With some fun Makefile rules, we can pick up all CCAN unit tests.
We exclude the unit test source files from the lcov report itself.
Add skeleton ccan config.h and tap.h that are enough for us to build
and run the test suite. Currently, the minimalist versions should
be fine (and we don't need CCAN configurator).
Also includes -Werror fixes for ccan tests.
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'Makefile.main')
-rw-r--r-- | Makefile.main | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.main b/Makefile.main index d4249f0..4a8cbe4 100644 --- a/Makefile.main +++ b/Makefile.main @@ -167,8 +167,8 @@ coverage-report: skiboot.info genhtml -q -o $@ $< skiboot.info: coverage - lcov -q -c -d . -o $@ - + lcov -q -c -d . $(LCOV_DIRS) -o $@ + lcov -q -r $@ $(LCOV_EXCLUDE) -o $@ tags: find . -name '*.[chS]' | xargs ctags @@ -176,7 +176,7 @@ tags: TAGS: find . -name '*.[chS]' | xargs etags -.PHONY: tags TAGS check +.PHONY: tags TAGS check coverage cscope: find . -name '*.[chS]' | xargs cscope |