diff options
author | Patrick Allaert <patrickallaert@php.net> | 2010-06-11 14:04:57 +0000 |
---|---|---|
committer | Patrick Allaert <patrickallaert@php.net> | 2010-06-11 14:04:57 +0000 |
commit | 899bc2f5820955641d8829b4957dde7b197244da (patch) | |
tree | e6c52fc1fc7d70c8421778c6445643aef3c220a4 /Makefile.gcov | |
parent | d24c14cb5944167e413751963a608030f76c1ae9 (diff) | |
download | php-git-899bc2f5820955641d8829b4957dde7b197244da.tar.gz |
- Fixed bug #52019 (make lcov doesn't support TESTS variable anymore)
Diffstat (limited to 'Makefile.gcov')
-rw-r--r-- | Makefile.gcov | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/Makefile.gcov b/Makefile.gcov index 01dad16113..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 'safe_mode=0' -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 'safe_mode=0' -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 |