Statistics
| Branch: | Tag: | Revision:

root / autotools / gen-coverage @ 27e336af

History | View | Annotate | Download (1.3 kB)

1
#!/bin/bash
2
#
3

    
4
# Copyright (C) 2010 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21
set -e
22

    
23
: ${COVERAGE:=coverage}
24
: ${PYTHON:=python}
25
: ${COVERAGE_FILE:?}
26
: ${TEXT_COVERAGE:?}
27

    
28
omit=$($PYTHON -c 'import sys;
29
print " ".join(["--omit=%s/" % i for i in
30
                set([sys.prefix, sys.exec_prefix])])')
31

    
32
$COVERAGE erase
33

    
34
for script; do
35
  $COVERAGE run --branch --append $script
36
done
37

    
38
echo "Writing text report to $TEXT_COVERAGE ..." >&2
39
$COVERAGE report $omit | tee "$TEXT_COVERAGE"
40

    
41
if [[ -n "$HTML_COVERAGE" ]]; then
42
  echo "Generating HTML report in $HTML_COVERAGE ..." >&2
43
  $COVERAGE html $omit -d "$HTML_COVERAGE"
44
fi