Print diff file contents

Adding script to print out diff file contents, if there are failing tests
This commit is contained in:
ulvii 2017-03-27 17:26:59 -07:00 committed by GitHub
parent d0aed143dc
commit 3d7a472626

View file

@ -25,6 +25,8 @@ script:
- docker ps -a
- docker exec client php ./source/pdo_sqlsrv/run-tests.php ./test/pdo_sqlsrv/*.phpt
- docker exec client php ./source/sqlsrv/run-tests.php ./test/sqlsrv/*.phpt
- docker exec client for f in ./test/sqlsrv/*.diff; do ls $f; cat $f; done
- docker exec client for f in ./test/pdo_sqlsrv/*.diff; do ls $f; cat $f; done
- docker exec client coveralls -e ./source/shared/ --gcov-options '\-lp'
- docker stop client
- docker ps -a