summaryrefslogtreecommitdiff
path: root/Makefile.gcov
diff options
context:
space:
mode:
authorPatrick Allaert <patrickallaert@php.net>2010-06-11 14:04:57 +0000
committerPatrick Allaert <patrickallaert@php.net>2010-06-11 14:04:57 +0000
commit11a5da57e138c4182510d3c82c4789796efab22f (patch)
tree3b3d209339fcd3d9a1a0c033f5451748d5f959b5 /Makefile.gcov
parentd42dbb3bed2ab53bf0f7576187fbd86c5a0e1531 (diff)
downloadphp-git-11a5da57e138c4182510d3c82c4789796efab22f.tar.gz
- Fixed bug #52019 (make lcov doesn't support TESTS variable anymore)
Diffstat (limited to 'Makefile.gcov')
-rw-r--r--Makefile.gcov21
1 files changed, 3 insertions, 18 deletions
diff --git a/Makefile.gcov b/Makefile.gcov
index 1181d3fe03..e499c833bb 100644
--- a/Makefile.gcov
+++ b/Makefile.gcov
@@ -5,24 +5,7 @@
lcov: lcov-html
-lcov-test: all
- @echo "Running test suite"
- @find . -name \*.gcda -o -name \*.da -o -name \*.bbg? | xargs rm -f
- -@if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \
- NO_INTERACTION=1 \
- TEST_PHP_EXECUTABLE=$(PHP_EXECUTABLE) \
- TEST_PHP_SRCDIR=$(top_srcdir) \
- CC="$(CC)" \
- $(PHP_EXECUTABLE) -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php -d 'extension_dir=modules/' -d `( . $(PHP_MODULES) ; echo extension=$$dlname)` tests/; \
- elif test ! -z "$(SAPI_CLI_PATH)" && test -x "$(SAPI_CLI_PATH)"; then \
- NO_INTERACTION=1 \
- TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \
- TEST_PHP_SRCDIR=$(top_srcdir) \
- CC="$(CC)" \
- $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php $(TESTS); \
- else \
- echo "ERROR: Cannot run tests without CLI sapi."; \
- fi
+lcov-test: lcov-clean-data test
php_lcov.info: lcov-test
@echo "Generating data for $@"
@@ -77,3 +60,5 @@ lcov-clean:
rm -rf lcov_data/
rm -rf lcov_html/
+lcov-clean-data:
+ @find . -name \*.gcda -o -name \*.da -o -name \*.bbg? | xargs rm -f