From 8e01291c18c8221ee7d8e457afc8c7a4fc94ef3f Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 26 Jun 2014 00:05:53 +0300 Subject: [PATCH] travis: Use unified diffs for failed tests. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e6c12b9677..489cceaa27 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,4 +20,4 @@ script: - (cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests) after_failure: - - (cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done) + - (cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff -u $testbase.exp $testbase.out; done)