From: Sebastian Pipping Date: Sun, 28 Jul 2019 20:15:58 +0000 (+0200) Subject: qa.sh: Show tests/runtests*.log on "make check" failure for MinGW X-Git-Tag: R_2_2_8~54^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ff0d45359ad997061e39a119475b770d129282d;p=libexpat qa.sh: Show tests/runtests*.log on "make check" failure for MinGW --- diff --git a/expat/qa.sh b/expat/qa.sh index a5442c84..73a40ac1 100755 --- a/expat/qa.sh +++ b/expat/qa.sh @@ -111,7 +111,12 @@ run_tests() { RUN "${MAKE}" \ CFLAGS="${CFLAGS} -Werror" \ CXXFLAGS="${CXXFLAGS} -Werror" \ - check run-xmltest + check run-xmltest \ + || { + RUN cat tests/runtests.log + RUN cat tests/runtestspp.log + false + } }