From: Stig Bakken Date: Wed, 13 Dec 2000 14:01:39 +0000 (+0000) Subject: * PEAR: don't require "make install" before "make test" X-Git-Tag: php-4.0.5RC1~912 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=672a300022e426a03ccfb7c44ead392705aeb521;p=php * PEAR: don't require "make install" before "make test" --- diff --git a/build/rules.mk b/build/rules.mk index 1b46df9b02..e0d77a5968 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -55,9 +55,9 @@ distclean: distclean-recursive clean-x test: $(top_builddir)/php @if test "$(TESTS)" = ""; then \ - $(top_builddir)/php -q $(top_srcdir)/run-tests.php `pwd`; \ + $(top_builddir)/php -d include_path=".:$(top_srcdir)/pear:$(PEAR_INSTALLDIR)" -q $(top_srcdir)/run-tests.php `pwd`; \ else \ - $(top_builddir)/php -q $(top_srcdir)/run-tests.php $(TESTS); \ + $(top_builddir)/php -d include_path=".:$(top_srcdir)/pear:$(PEAR_INSTALLDIR)" -q $(top_srcdir)/run-tests.php $(TESTS); \ fi include $(builddir)/.deps