Mercurial > trustbridge
diff make-coverage.sh.in @ 557:5cd525fc91de
Add lcov target to generate coverage report
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Thu, 22 May 2014 10:19:27 +0000 |
parents | |
children | 0f3af6916395 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/make-coverage.sh.in Thu May 22 10:19:27 2014 +0000 @@ -0,0 +1,20 @@ +#!/bin/bash + +# Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik +# Software engineering by Intevation GmbH +# +# This file is Free Software under the GNU GPL (v>=2) +# and comes with ABSOLUTELY NO WARRANTY! +# See LICENSE.txt for details. + +set -x + +rm -r @CMAKE_CURRENT_BINARY_DIR@/coverage +mkdir -p @CMAKE_CURRENT_BINARY_DIR@/coverage +cd @CMAKE_CURRENT_BINARY_DIR@/coverage +lcov -c -i -d @CMAKE_BINARY_DIR@ -o base.info +cd @CMAKE_BINARY_DIR@ +make test +lcov -c -d @CMAKE_BINARY_DIR@ -o test.info +lcov -a base.info -a test.info -o TrustBridge-@PROJECT_VERSION@.info +genhtml TrustBridge-@PROJECT_VERSION@.info