diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-03-26 08:28:22 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-03-27 09:20:49 +0000 |
commit | aa70226ed9ba21cdfacad6484156935061bbf771 (patch) | |
tree | acd06a03fd414bd284ad0685169371ee01d37889 | |
parent | 9b4a62db9f36a668f9c48f0b21e42aee46c33b4e (diff) |
output log files from skipped tests
-rw-r--r-- | tests/twisted/run-test.sh.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/twisted/run-test.sh.in b/tests/twisted/run-test.sh.in index 1c502b42..21cc96af 100644 --- a/tests/twisted/run-test.sh.in +++ b/tests/twisted/run-test.sh.in @@ -131,6 +131,13 @@ for t in $list ; do ;; (77) echo "ok $i # SKIP $t" + ( + cd $tmp && for x in *.log; do + echo "# ===== log file: $x =====" + sed 's/^/# /' "$x" + done + echo "# ===== end of log files for $t =====" + ) if test -z "$MC_TEST_KEEP_TEMP"; then rm -fr "$tmp" fi |