From 4b28519fc709b21056c933f1c1adb5c38238e304 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 19 Sep 2013 18:48:38 +0100 Subject: [PATCH 2/5] run-test.sh.in: dump logfiles to stdout on failure This is a lot of very spammy output, but the failures are basically undebuggable without it, so... --- tests/twisted/run-test.sh.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/twisted/run-test.sh.in b/tests/twisted/run-test.sh.in index ac553e3..b79397e 100644 --- a/tests/twisted/run-test.sh.in +++ b/tests/twisted/run-test.sh.in @@ -134,6 +134,12 @@ for i in $list ; do (*) any_failed=1 echo "FAIL: $i ($e)" + ( + cd $tmp && for x in *.log; do + echo "===== log file: $x =====" + cat "$x" + done + ) ;; esac done -- 1.8.4.rc3