Skip to content

Php7 #209

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jan 20, 2016
Prev Previous commit
Next Next commit
Show diff
  • Loading branch information
mkoppanen committed Jan 18, 2016
commit 029784c6870fcd812e58f56c4a17a51e198eb2fc
10 changes: 2 additions & 8 deletions .travis/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -181,22 +181,16 @@ EOF
function run_memcached_tests() {
export NO_INTERACTION=1
export REPORT_EXIT_STATUS=1
export TEST_PHP_EXECUTABLE=`which php`
export TEST_PHP_EXECUTABLE=$(which php)

pushd "${PHP_MEMCACHED_BUILD_DIR}/memcached-${PHP_MEMCACHED_VERSION}"
# We have one xfail test, we run it separately
php run-tests.php -d extension=memcached.so -n ./tests/expire.phpt
rm ./tests/expire.phpt

# Run normal tests
php run-tests.php -d extension=memcached.so -n ./tests/*.phpt
php run-tests.php --show-diff -d extension=memcached.so -n ./tests/*.phpt
retval=$?
for i in `ls tests/*.out 2>/dev/null`; do
echo "-- START ${i}";
cat $i;
echo "";
echo "-- END";
done
popd

return $retval;
Expand Down