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
Memcached log
  • Loading branch information
mkoppanen committed Jan 18, 2016
commit 37f261879742d52a329e9c172ef2cce6f1a34684
6 changes: 5 additions & 1 deletion .travis/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,11 @@ function run_memcached() {
"${prefix}/bin/memcached" -d -p 11211

# Run memcached on port 11212 with SASL support
echo "SASL users:"
sasldblistusers2 -f "${SASL_CONF_PATH}/sasldb2"

export MEMCACHED_SASL_PWDB="${SASL_CONF_PATH}/sasldb2"
"${prefix}/bin/memcached" -S -d -p 11212
"${prefix}/bin/memcached" -S -d -v -p 11212 > /tmp/memcached-sasl.log 2>&1
}

function build_php_memcached() {
Expand Down Expand Up @@ -194,6 +197,7 @@ function run_memcached_tests() {
retval=$?
popd

cat /tmp/memcached-sasl.log
return $retval;
}

Expand Down