From: tho Date: Fri, 13 Mar 2009 11:44:18 +0000 (+0000) Subject: Makefile: fix for test_coverage target X-Git-Url: http://g0dil.de/git?p=senf.git;a=commitdiff_plain;h=64bfdec888eadb3c2c4af30e5bc26554ca6a4f80 Makefile: fix for test_coverage target git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1152 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/Makefile b/Makefile index 4020c80..10a82c9 100644 --- a/Makefile +++ b/Makefile @@ -45,12 +45,12 @@ all_docs all_tests all: test_coverage: $(SCONS) debug=1 EXTRA_CCFLAGS="-fprofile-arcs -ftest-coverage" EXTRA_LIBS="gcov" all_tests ln -s ../../boost/ include/senf/ # ugly work-around - lcov --directory . --capture --output-file test_coverage.info --base-directory . - rm include/senf/boost - lcov --output-file /tmp/test_coverage.info.tmp --extract test_coverage.info \*/senf/\* - lcov --output-file test_coverage.info --remove /tmp/test_coverage.info.tmp \*/senf/include/\* - rm /tmp/test_coverage.info.tmp + lcov --directory . --capture --output-file /tmp/test_coverage.info --base-directory . +# lcov --output-file /tmp/test_coverage.info.tmp --extract test_coverage.info \*/senf/\* + lcov --output-file test_coverage.info --remove /tmp/test_coverage.info \*/include/\* genhtml --output-directory doc/test_coverage --title "all_tests" test_coverage.info + rm /tmp/test_coverage.info + rm include/senf/boost #---------------------------------------------------------------------- # Subversion stuff