Skip to content
Snippets Groups Projects
Commit 8e01291c authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

travis: Use unified diffs for failed tests.

parent 7a2f1669
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment