summaryrefslogtreecommitdiffstats
path: root/m4/dpkg-coverage.m4
blob: 70b67d1522f3d96de7fdcb92644222c511cd7a64 (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
# serial 1
# Copyright © 2010 Guillem Jover <guillem@debian.org>

# DPKG_CODE_COVERAGE
# ------------------
# Add configuration option to enable code coverage support.
AC_DEFUN([DPKG_CODE_COVERAGE], [
  AC_ARG_ENABLE([coverage],
    [AS_HELP_STRING([--enable-coverage], [whether to enable code coverage])],
    [], [enable_coverage=no])
  AM_CONDITIONAL([COVERAGE_ENABLED], [test x$enable_coverage = xyes])

  AS_IF([test "x$enable_coverage" = "xyes"], [
     AS_IF([test "x$GCC" = "xno"], [
       AC_MSG_ERROR([not compiling with gcc, which is required for C coverage support])
     ])

     AC_CHECK_PROGS([GCOV], [gcov])
     AS_IF([test -z "$GCOV"], [
       AC_MSG_ERROR([missing gcov, which is required for C coverage support])
     ])

     AC_CHECK_PROGS([LCOV], [lcov])
     AS_IF([test -z "$LCOV"], [
       AC_MSG_ERROR([missing lcov, which is required for C coverage support])
     ])

     AC_CHECK_PROGS([LCOV_GENHTML], [genhtml])
     AS_IF([test -z "$LCOV_GENHTML"], [
       AC_MSG_ERROR([missing genhtml, which is required for C coverage support])
     ])

     CFLAGS="$CFLAGS --coverage -O0"
     LDFLAGS="$LDFLAGS --coverage -O0"

     AC_MSG_CHECKING([for Devel::Cover perl module])
     AS_IF([$($PERL -e "require Devel::Cover;" 2>/dev/null)], [
       PERL_COVERAGE="-MDevel::Cover"
       AC_SUBST(PERL_COVERAGE)
       AC_MSG_RESULT([ok])
     ], [
       AC_MSG_ERROR([Devel::Cover perl module is required for coverage support])
     ])
     AC_CHECK_PROGS([PERL_COVER], [cover])
     AS_IF([test -z "$PERL_COVER"], [
       AC_MSG_ERROR([missing cover, which is required for perl coverage support])
     ])
  ])
  AC_MSG_CHECKING([whether to build with code coverage])
  AC_MSG_RESULT([$enable_coverage])
])