1
0
Fork 0

change the way to run all php tests, with php-src php-cli php-cgi symlink to correct target

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@590 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 2009-04-01 15:40:12 +00:00
parent d220e949c5
commit fa00e9c679
2 changed files with 12 additions and 15 deletions

View File

@ -38,6 +38,7 @@ xcachesvnclean: clean
cat $(srcdir)/.cvsignore | grep -v ^Makefile | grep -v ^config.nice | xargs rm -rf
xcachetest:
$(SED) "s#\\./modules/#$(top_builddir)/modules/#" < $(srcdir)/xcache-test.ini > $(top_builddir)/tmp-php.ini
TEST_PHP_SRCDIR=$(top_srcdir) \
CC="$(CC)" \
$(srcdir)/run-xcachetest -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php $(TESTS) $(TEST_ARGS) -c $(srcdir)/xcache-test.ini
$(srcdir)/run-xcachetest -d 'open_basedir=' -d 'safe_mode=0' -d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php $(TESTS) $(TEST_ARGS) -c $(top_builddir)/tmp-php.ini

View File

@ -1,8 +1,12 @@
#!/bin/sh
getAbsolutePath() {
which readlink >/dev/null 2>&1 && readlink -f "$@" || echo "$@"
}
# use symlink first
if test -x ./php-cli ; then
php_cli=./php-cli
php_cli=`getAbsolutePath ./php-cli`
elif test ! -z "$TEST_PHP_EXECUTABLE" && test -x "$TEST_PHP_EXECUTABLE"; then
php_cli="$TEST_PHP_EXECUTABLE"
else
@ -10,31 +14,23 @@ else
fi
if test -x ./php-cgi ; then
php_cgi=./php-cgi
php_cgi=`getAbsolutePath ./php-cgi`
else
php_cgi="`which php-cgi`"
fi
test -z "$PHP_SRC" && PHP_SRC=./php-src
if test -z "$TEST_PHP_USER" ; then
TEST_PHP_USER="$PHP_SRC/tests"
for i in Zend ZendEngine2 ext/standard/tests ext/reflection/tests ext/spl/tests; do
if test -d "$PHP_SRC/$i" ; then
TEST_PHP_USER="$TEST_PHP_USER,$PHP_SRC/$i"
fi
done
fi
test -z "$PHP_SRC" && PHP_SRC=`getAbsolutePath ./php-src`
TEST_PHP_EXECUTABLE="$php_cli"
TEST_PHP_CGI_EXECUTABLE="$php_cgi"
TEST_PHP_SRCDIR="$PHP_SRC"
export TEST_PHP_CGI_EXECUTABLE
export TEST_PHP_EXECUTABLE
export TEST_PHP_USER
export TEST_PHP_CGI_EXECUTABLE
export TEST_PHP_SRCDIR
echo "XCache test running with:"
echo "TEST_PHP_CGI_EXECUTABLE: $TEST_PHP_CGI_EXECUTABLE"
echo "TEST_PHP_EXECUTABLE: $TEST_PHP_EXECUTABLE"
echo "TEST_PHP_USER: $TEST_PHP_USER"
exec "$php_cli" "$@"