From b6d67b60d6f67e6ea3784add7ff56d8bf53c06e2 Mon Sep 17 00:00:00 2001 From: Xuefer Date: Wed, 12 Nov 2014 18:51:22 +0000 Subject: [PATCH] fix tests for older php git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1575 c26eb9a1-5813-0410-bd6c-c2e55f420ca7 --- Makefile.frag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.frag b/Makefile.frag index a40444d..db8b2f9 100644 --- a/Makefile.frag +++ b/Makefile.frag @@ -33,6 +33,6 @@ xcachesvnclean: clean xcachetest: all $(SED) "s#\\./\\.libs/#$(top_builddir)/\\.libs/#" < $(srcdir)/xcache-test.ini > $(top_builddir)/tmp-php.ini if test -z "$(TESTS)"; then \ - TEST_PHP_SRCDIR=$(srcdir) $(srcdir)/run-xcachetest $(TEST_ARGS) -c $(top_builddir)/tmp-php.ini; \ + TEST_INI=$(top_builddir)/tmp-php.ini TEST_PHP_USER=tests TEST_PHP_SRCDIR=$(srcdir) $(srcdir)/run-xcachetest $(TEST_ARGS); \ fi - $(srcdir)/run-xcachetest $(TESTS) $(TEST_ARGS) -c $(top_builddir)/tmp-php.ini + TEST_INI=$(top_builddir)/tmp-php.ini $(srcdir)/run-xcachetest $(TESTS) $(TEST_ARGS)