This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository protozero.
commit 1b718322a58493adb55dfe255ae0b9e1fffa3003 Author: Bas Couwenberg <[email protected]> Date: Wed Sep 2 16:17:11 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 8b0a65d..f4c4311 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +protozero (1.1.0-4) UNRELEASED; urgency=medium + + * Ignore test failures only on problematic architectures. + + -- Bas Couwenberg <[email protected]> Wed, 02 Sep 2015 16:16:53 +0200 + protozero (1.1.0-3) unstable; urgency=medium * Use Breaks/Replaces for libosmium2-dev versions including protozero only. diff --git a/debian/rules b/debian/rules index 0f461e8..a621d7e 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 @@ -17,7 +19,12 @@ override_dh_auto_build-indep: $(RM) doc/html/*.md5 override_dh_auto_test: +# Ignore test failures on problematic architectures only +ifneq (,$(findstring $(DEB_BUILD_ARCH),"armhf")) dh_auto_test || echo "Ignoring test failures" +else + dh_auto_test +endif override_dh_installchangelogs: dh_installchangelogs CHANGELOG.md -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/protozero.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

