blob: 8d897db36f04a30763491658d8336a592b464d59 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
#!/bin/bash
# to compute the coverage of mpfr-x.y.z, just copy this script
# into mpfr-x.y.z/tools and run it
# Set up the right directoy
cd $(dirname $0)/..
# First Build MPFR in /tmp/
echo "Erasing previous /tmp/ompfr-gcov"
rm -rf /tmp/ompfr-gcov || exit 1
mkdir /tmp/ompfr-gcov || exit 1
echo "Copying MPFR sources to /tmp/ompfr-gcov"
cp -r . /tmp/ompfr-gcov || exit 1
cd /tmp/ompfr-gcov || exit 1
echo "Remove previous coverage information."
rm -f $(find . -name '*.gc*')
# Remove MPFR_* environment variables to get reproducible coverage results.
for i in `env | sed -n 's/^\(MPFR_[^=]*\).*/\1/p'`; do unset "$i"; done
echo "Reconfiguring MPFR"
autoreconf -i || exit 1
echo "Building MPFR"
./configure --enable-assert=none --enable-tune-for-coverage --disable-shared --enable-static \
CFLAGS="-fprofile-arcs -ftest-coverage -g" || exit 1
make clean || exit 1
make all -j4 || exit 1
# Note: we want to compute the coverage even in case of failure of some tests.
unset GMP_CHECK_RANDOMIZE
make check -j4
# Check version of gcov:
# 3.3 outputs like this:
# 100.00% of 36 lines executed in function mpfr_add
# 100.00% of 36 lines executed in file add.c
# Creating add.c.gcov.
# It doesn't support gcov *.c
#
# gcov (GCC) 3.4 outputs like this:
# Function `mpfr_add'
# Lines executed:100.00% of 36
#
# File `add.c'
# Lines executed:100.00% of 36
# add.c:creating `add.c.gcov'
# It supports gcov *.c
# Setup the parser depending on gcov
version=$(gcov --version | head -1 | cut -f2 -d')')
version=$(( $(echo "$version" | cut -f1 -d'.')*100 + $(echo "$version" | cut -f1 -d'.')*10 ))
if test "$version" -ge 340 ; then
echo "#!/bin/bash
while true ; do
if read x ; then
case \$x in
Function*)
read y
case \$y in
*100.00*)
;;
*)
echo \$x \$y
;;
esac
;;
esac
else
exit 0
fi
done
" > coverage.subscript
else
echo "#!/bin/bash
while true ; do
if read x ; then
case \$x in
100.00*)
;;
*function*)
echo \$x
;;
esac
else
exit 0
fi
done
" > coverage.subscript
fi
# Do "gcov" for all files and parse the output
cd src
for i in $(find . -name '*.c')
do
gcov -f $i -o $(dirname $i) 2> /dev/null || exit 1
done | bash ../coverage.subscript | grep -v '__gmp' > ../coverage.mpfr
rm -f coverage.subscript coverage-tmp || exit 1
cd -
lcov --capture --directory . --output-file all.info || exit 1
genhtml -o coverage all.info || exit 1
echo "Coverage summary saved in file /tmp/ompfr-gcov/coverage.mpfr"
echo "Detailed coverage is available at /tmp/ompfr-gcov/coverage/index.html"
|