This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository libosmium.
commit 5c485764adcdd17d75179da48c9cedb1826e56f1 Author: Bas Couwenberg <[email protected]> Date: Wed Sep 2 16:36:46 2015 +0200 Ignore test failures only on problematic architectures. --- debian/changelog | 6 ++++++ debian/rules | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/debian/changelog b/debian/changelog index 47e996f..541aa77 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libosmium (2.4.1-3) UNRELEASED; urgency=medium + + * Ignore test failures only on problematic architectures. + + -- Bas Couwenberg <[email protected]> Wed, 02 Sep 2015 16:36:31 +0200 + libosmium (2.4.1-2) unstable; urgency=medium * Don't install protozero headers, use libprotozero-dev instead. diff --git a/debian/rules b/debian/rules index aef5c2c..2b0968c 100755 --- a/debian/rules +++ b/debian/rules @@ -5,6 +5,8 @@ # Verbose make output export VERBOSE=1 +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) + %: dh $@ --parallel @@ -18,7 +20,12 @@ override_dh_auto_build-indep: (cd build && $(MAKE) doc) override_dh_auto_test: +# Ignore test failures on problematic architectures only +ifneq (,$(findstring $(DEB_BUILD_ARCH),"ppc64")) (cd build && ctest -V || echo "Ignoring test failures") +else + (cd build && ctest -V) +endif override_dh_installchangelogs: dh_installchangelogs -k CHANGELOG.md -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libosmium.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

