Display output on network test fail

This still seems to be failing on travis, so let's see what it looks
like!
This commit is contained in:
Edwin Brady 2019-08-29 12:56:13 +01:00
parent 6a0cfa125a
commit f123fcaf84

View File

@ -3,7 +3,8 @@
${IDRIS2} --exec main Echo.idr > build/output
if ! [ -z "$(diff build/output expected)" ]; then
echo "TEST FAILURE: unexpected build/output"
echo "TEST FAILURE: unexpected build/output: "
cat build/output
exit 2
else
echo "TEST SUCCESS"