aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--tests/interactive.fish6
2 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index a60bd0fd..da0e221a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,7 +11,7 @@ script:
- ./configure
- make
- sudo make install
- - make test
+ - make test SHOW_INTERACTIVE_LOG=1
notifications:
irc:
channels:
diff --git a/tests/interactive.fish b/tests/interactive.fish
index 369b8546..b550dc9e 100644
--- a/tests/interactive.fish
+++ b/tests/interactive.fish
@@ -42,6 +42,12 @@ for i in *.expect
# clean up tmp files
rm -f $i.tmp.{err,out,log}
else
+ if set -qgx SHOW_INTERACTIVE_LOG
+ # dump the interactive log
+ # primarily for use in travis where we can't check it manually
+ echo "Log for file $i:"
+ cat $i.tmp.log
+ end
echo "File $i failed tests"
end
end