[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Fwd: pspp package FTBFS on armhf
From: |
Ben Pfaff |
Subject: |
Re: Fwd: pspp package FTBFS on armhf |
Date: |
Sat, 16 Aug 2014 11:11:57 -0700 |
On Fri, Aug 15, 2014 at 7:52 AM, Ben Pfaff <address@hidden> wrote:
> Here is another way that may help you to get the information you need:
> the testsuite.log is often sufficient to debug problems, but the package
> as uploaded does not log it on failure. By modifying debian/rules to
> log it, we will gain more information. Here is, for example, how the
> openvswitch package does something similar:
>
> build-arch: build-arch-stamp
> build-arch-stamp: configure-stamp
> $(MAKE) -C _debian
> ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
> if $(MAKE) -C _debian check TESTSUITEFLAGS='$(PARALLEL)'; then :; \
> else \
> cat _debian/tests/testsuite.log; \
> exit 1; \
> fi
> endif
> touch $@
I made this change myself. I'm uploading now. I hope that this helps us
find the issue.