From 3b3e11a0be384ef9fe2f7e08c6fe1b6f125d0543 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Thu, 8 Jun 2017 12:20:47 -0600 Subject: [PATCH] dump test results into build log on test failure to help with #837351 --- debian/changelog | 6 ++++++ debian/rules | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 6351eb74..f7f3daee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +tar (1.29b-3) UNRELEASED; urgency=medium + + * dump test results into build log on make check failure for kfreebsd team + + -- Bdale Garbee Thu, 08 Jun 2017 12:20:20 -0600 + tar (1.29b-2) unstable; urgency=medium * add suggests tar-doc, closes: #856958 diff --git a/debian/rules b/debian/rules index 6ed8fe20..7c2f21c0 100755 --- a/debian/rules +++ b/debian/rules @@ -49,7 +49,7 @@ ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) echo "Sorry, but the test suite is not designed to be run as root."; \ exit 1 ;\ fi - $(MAKE) check + $(MAKE) check || { cat tests/testsuite.log; false; } endif endif -- 2.30.2