Skip to content

Commit 029784c

Browse files
committed
Show diff
1 parent 5eb3bfd commit 029784c

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.travis/travis.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -181,22 +181,16 @@ EOF
181181
function run_memcached_tests() {
182182
export NO_INTERACTION=1
183183
export REPORT_EXIT_STATUS=1
184-
export TEST_PHP_EXECUTABLE=`which php`
184+
export TEST_PHP_EXECUTABLE=$(which php)
185185

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

191191
# Run normal tests
192-
php run-tests.php -d extension=memcached.so -n ./tests/*.phpt
192+
php run-tests.php --show-diff -d extension=memcached.so -n ./tests/*.phpt
193193
retval=$?
194-
for i in `ls tests/*.out 2>/dev/null`; do
195-
echo "-- START ${i}";
196-
cat $i;
197-
echo "";
198-
echo "-- END";
199-
done
200194
popd
201195

202196
return $retval;

0 commit comments

Comments
 (0)