From 3d7a4726263ee10e3cc00039418ddd5339061b6c Mon Sep 17 00:00:00 2001 From: ulvii Date: Mon, 27 Mar 2017 17:26:59 -0700 Subject: [PATCH] Print diff file contents Adding script to print out diff file contents, if there are failing tests --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index de98b18d..564f0a86 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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