summaryrefslogtreecommitdiff
path: root/Makefile.global
diff options
context:
space:
mode:
authorBernhard K. Weisshuhn <bkw@codingforce.com>2012-11-11 20:11:06 +0100
committerBernhard K. Weisshuhn <bkw@codingforce.com>2012-11-11 20:11:06 +0100
commit180767373d03238431103c02a93de19df49c14dc (patch)
treeb740cb6ba46a00575d2ba0a0f318fec93bf566d2 /Makefile.global
parent4029475e82552a3ceddbdd343bdb5641eb269c50 (diff)
downloadphp-git-180767373d03238431103c02a93de19df49c14dc.tar.gz
make failed tests fail the test target
I don't see any reason to ignore failed tests. This makes it unnecessarily difficult to use ci, also for module builds.
Diffstat (limited to 'Makefile.global')
-rw-r--r--Makefile.global2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.global b/Makefile.global
index b30c318fc4..eaf651e8e2 100644
--- a/Makefile.global
+++ b/Makefile.global
@@ -86,7 +86,7 @@ PHP_TEST_SHARED_EXTENSIONS = ` \
PHP_DEPRECATED_DIRECTIVES_REGEX = '^(magic_quotes_(gpc|runtime|sybase)?|(zend_)?extension(_debug)?(_ts)?)[\t\ ]*='
test: all
- -@if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \
+ @if test ! -z "$(PHP_EXECUTABLE)" && test -x "$(PHP_EXECUTABLE)"; then \
INI_FILE=`$(PHP_EXECUTABLE) -d 'display_errors=stderr' -r 'echo php_ini_loaded_file();' 2> /dev/null`; \
if test "$$INI_FILE"; then \
$(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_FILE" > $(top_builddir)/tmp-php.ini; \