From 9cc1bf5628d3e5c4e97aeeadfe72fee5689599c8 Mon Sep 17 00:00:00 2001 From: Gerard Roche Date: Mon, 23 Sep 2019 17:09:00 +0100 Subject: Fix GCOV not working for PHP-7.4 and master branches Code coverage reports (`make lcov`), since commit eef8522 (7.4 branch), generates incorrect coverage and emits warnings. Simplifying the Makefile.gcov file has the side-effect of resolving the issue. Processing sapi/cli/php_http_parser.gcda php-src/lcov_data/sapi/cli/php_http_parser.gcda:stamp mismatch with notes file geninfo: WARNING: gcov did not create any files for php-src/lcov_data/sapi/cli/php_http_parser.gcda! ... Processing ext/mbstring/mb_gpc.gcda php-src/lcov_data/ext/mbstring/mb_gpc.gcda:stamp mismatch with notes file geninfo: WARNING: gcov did not create any files for php-src/lcov_data/ext/mbstring/mb_gpc.gcda! Closes: https://bugs.php.net/bug.php?id=52718. See also: https://bugs.php.net/bug.php?id=78288. --- .gitignore | 1 - 1 file changed, 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 250a23efa2..20c97ef302 100644 --- a/.gitignore +++ b/.gitignore @@ -249,7 +249,6 @@ tmp-php.ini # ------------------------------------------------------------------------------ *.gcda *.gcno -/lcov_data/ /lcov_html/ /php_lcov.info -- cgit v1.2.1