[Pkg-wmaker-commits] [wmbiff] 01/01: debian/rules: Skip test_wmbiff on big endian archs; causes FTBFS.

Doug Torrance dtorrance-guest at moszumanska.debian.org
Wed Dec 21 09:42:06 UTC 2016


This is an automated email from the git hooks/post-receive script.

dtorrance-guest pushed a commit to branch master
in repository wmbiff.

commit b772ae9d60351f47e009e9e99f6560dd81505412
Author: Doug Torrance <dtorrance at piedmont.edu>
Date:   Wed Dec 21 04:36:52 2016 -0500

    debian/rules: Skip test_wmbiff on big endian archs; causes FTBFS.
---
 debian/changelog | 7 +++++++
 debian/rules     | 6 +++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 70f1181..d551cfd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+wmbiff (0.4.30-2) unstable; urgency=medium
+
+  * debian/rules
+    - Skip test_wmbiff on big endian archs; causes FTBFS.
+
+ -- Doug Torrance <dtorrance at piedmont.edu>  Wed, 21 Dec 2016 04:37:26 -0500
+
 wmbiff (0.4.30-1) unstable; urgency=medium
 
   * New upstream release.
diff --git a/debian/rules b/debian/rules
index 31abca3..4fa099b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -2,10 +2,14 @@
 
 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+DEB_HOST_ARCH_ENDIAN ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_ENDIAN)
 
 %:
 	dh $@ --with autoreconf
 
 override_dh_auto_test:
+# skip failing test_tlscomm on all archs
+# and test_wmbiff on big endian archs (TODO: why?)
+ifeq ($(DEB_HOST_ARCH_ENDIAN), little)
 	dh_auto_test -- TESTS=test_wmbiff
-# we skip test_tlscomm as it fails when building with pbuilder (TODO: why?)
+endif

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wmaker/wmbiff.git



More information about the Pkg-wmaker-commits mailing list