diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2012-04-03 21:36:26 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2012-04-03 21:36:26 -0500 |
commit | 425513bc3b7322c7f814d2304e8d7605585ca1e9 (patch) | |
tree | c352e61d5faf4d531512a8f4eab039ee8b75f1cd /m4 | |
parent | 6e1ebe98d9796d2f83e650a0c4f84654ae1b163a (diff) | |
parent | a7f9455d86f13e90558e37adb0cf3553b1c3e933 (diff) | |
download | ayatana-indicator-datetime-425513bc3b7322c7f814d2304e8d7605585ca1e9.tar.gz ayatana-indicator-datetime-425513bc3b7322c7f814d2304e8d7605585ca1e9.tar.bz2 ayatana-indicator-datetime-425513bc3b7322c7f814d2304e8d7605585ca1e9.zip |
merge lp:~allanlesage/indicator-datetime/TDD to remove a dependency on gcovr, move gcov targets to their own makefile, and clean up .gcno files.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/gcov.m4 | 23 |
1 files changed, 13 insertions, 10 deletions
@@ -5,11 +5,10 @@ # * gcovr # # Sets ac_cv_check_gcov to yes if tooling is present -# and reports the executables to the variables LCOV, GCOVR and GENHTML. +# and reports the executables to the variables LCOV, GCOVR and GENHTML. AC_DEFUN([AC_TDD_GCOV], -[AC_CACHE_CHECK([whether code coverage tools are available], ac_cv_check_gcov, [ -AC_ARG_ENABLE(gcov, + AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov], [enable coverage testing with gcov]), [use_gcov=$enableval], [use_gcov=no]) @@ -34,7 +33,6 @@ AC_ARG_ENABLE(gcov, lcov_version_list="1.6 1.7 1.8 1.9" AC_CHECK_PROG(LCOV, lcov, lcov) AC_CHECK_PROG(GENHTML, genhtml, genhtml) - AC_CHECK_PROG(GCOVR, gcovr, gcovr) if test "$LCOV"; then AC_CACHE_CHECK([for lcov version], glib_cv_lcov_version, [ @@ -63,10 +61,8 @@ AC_ARG_ENABLE(gcov, AC_MSG_ERROR([Could not find genhtml from the lcov package]) fi - if test -z "$GCOVR"; then - AC_MSG_ERROR([Could not find gcovr; easy_install (or pip) gcovr]) - fi - + ac_cv_check_gcov=yes + ac_cv_check_lcov=yes # Remove all optimization flags from CFLAGS changequote({,}) @@ -78,6 +74,13 @@ AC_ARG_ENABLE(gcov, COVERAGE_CXXFLAGS="-O0 -fprofile-arcs -ftest-coverage" COVERAGE_LDFLAGS="-lgcov" -fi -])]) # AC_TDD_GCOV + # Check availability of gcovr + AC_CHECK_PROG(GCOVR, gcovr, gcovr) + if test -z "$GCOVR"; then + ac_cv_check_gcovr=no + else + ac_cv_check_gcovr=yes + fi +fi +]) # AC_TDD_GCOV |