From: Nuno Lopes Date: Thu, 4 Jan 2007 14:11:47 +0000 (+0000) Subject: remove --show-details from lcov's genhtml, as currently we don't separate the coverag... X-Git-Tag: php-5.2.1RC2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17ff2f42ff8f9d27a66c9eafe2471abe96d84e44;p=php remove --show-details from lcov's genhtml, as currently we don't separate the coverage data per test, making this option useless # gathering per test coverage data is possible, but way too slow and would require modifications to run-tests.php --- diff --git a/Makefile.gcov b/Makefile.gcov index 57018b60be..e8da7d539d 100644 --- a/Makefile.gcov +++ b/Makefile.gcov @@ -67,7 +67,7 @@ php_lcov.info: lcov-test lcov-html: php_lcov.info @echo "Generating lcov HTML" - @$(LTP_GENHTML) --legend --output-directory lcov_html/ --title "PHP Code Coverage" --show-details php_lcov.info + @$(LTP_GENHTML) --legend --output-directory lcov_html/ --title "PHP Code Coverage" php_lcov.info lcov-clean: rm -f php_lcov.info