Source: pcre3 Version: 1:8.35-2 Severity: normal Tags: patch If the tests fail on a buildd, as is currently happening (return of #751828), detailed output is not given. This is a common issue with recent Automake, and can easily be fixed by running the tests with VERBOSE=1.
See also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744380 in which I asked for this to be done by default in dh_auto_test (but that wouldn't help pcre3, which doesn't use dh). S
>From 1b16d7373d9a785c588c90f4a2b470f07bf7f517 Mon Sep 17 00:00:00 2001 From: Simon McVittie <[email protected]> Date: Thu, 17 Jul 2014 09:29:17 +0100 Subject: [PATCH] Run tests with VERBOSE=1 so we can see the logs for failing tests --- debian/changelog | 7 +++++++ debian/rules | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 0467f9c..60ba7fc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pcre3 (1:8.35-2.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Run tests with VERBOSE=1 so we can see the logs for failing tests + + -- Simon McVittie <[email protected]> Thu, 17 Jul 2014 09:27:30 +0100 + pcre3 (1:8.35-2) unstable; urgency=medium * Build-depends on auto-reconf (Closes: 754540) diff --git a/debian/rules b/debian/rules index 108a738..41ef1a3 100755 --- a/debian/rules +++ b/debian/rules @@ -50,7 +50,7 @@ build-stamp: configure-stamp # Add here commands to compile the package. $(MAKE) ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) - $(MAKE) check + $(MAKE) check VERBOSE=1 endif touch build-stamp -- 2.0.1

