blob: d3e6b1255e752ebdafd9e8ff6e677e2337effb7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/sh
# This script assumes that it is run from the toplevel directory, that
# the 'configure' script has been called with '--enable-coverage'
if [ ! -f config.status ]; then
echo "Please configure your build with --enable-coverage and rebuild."
exit -1
fi
grep -q "\-\-enable-coverage" config.status
if [ "$?" != 0 ]; then
echo "Please configure your build with --enable-coverage and rebuild."
exit -1
fi
SOURCE_DIR=.
SCRIPT_DIR=Tools/Coverage
LCOVDIR=3rdParty/LCov
RESULTS_DIR=Tools/Coverage/results
OUTPUT_DIR=$RESULTS_DIR/coverage-`git log --pretty=format:%ct-%h | head -n 1`
make -C $SOURCE_DIR
if [ ! -f $OUTPUT_DIR ]; then
mkdir -p $OUTPUT_DIR
fi
# Reset counters
$LCOVDIR/lcov --zerocounters --directory $SOURCE_DIR
# All tests
make -C $SOURCE_DIR test
$LCOVDIR/lcov --capture --directory $SOURCE_DIR -b $SOURCE_DIR --output-file $OUTPUT_DIR/all.info --test-name all
cp $OUTPUT_DIR/all.info $OUTPUT_DIR/all.info.orig
$SCRIPT_DIR/FilterLCovData.py $OUTPUT_DIR/all.info
# Generate HTML
$LCOVDIR/gendesc -o $OUTPUT_DIR/descriptions $SCRIPT_DIR/descriptions.txt
$LCOVDIR/genhtml --no-function-coverage --title "Swift Coverage" --output-directory $OUTPUT_DIR $OUTPUT_DIR/all.info
# Generate summary
$SCRIPT_DIR/GenerateSummary.py $OUTPUT_DIR/all.info $OUTPUT_DIR/summary
|