summaryrefslogtreecommitdiff
path: root/m4/gnome-code-coverage.m4
Commit message (Collapse)AuthorAgeFilesLines
* build: disable lcov version checkBeniamino Galvani2017-10-201-24/+2
| | | | | | | | | | | | Ideally we should switch to the standard macro AX_CODE_COVERAGE for code coverage, but infortunately it's not supported on older distros (e.g. on Travis). Keep using the current macro, but remove the lcov version check as it's not clear why it's needed in the first place (see [1]). The latest version of lcov is now 1.13. [1] http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=commit;h=dedd290bdb647704d74c13992bd04275d9cb648e
* build: update gnome-code-coverage.m4Dan Winship2013-05-091-5/+7
| | | | | | Update gnome-code-coverage.m4 from gnome-common to fix some (harmless) error messages when coverage is disabled (bug 699943), and to add support for lcov 1.10.
* coverage: delete *.gcno on make cleanPavel Šimerda2013-04-241-2/+2
|
* build: add code coverage supportPavel Šimerda2013-01-081-0/+162
Use the following in Makefile.am to enable code coverage for individual modules: @GNOME_CODE_COVERAGE_RULES@ my_program_LIBS = … $(CODE_COVERAGE_LDFLAGS) … my_program_CFLAGS = … $(CODE_COVERAGE_CFLAGS) …