[Git][haskell-team/DHG_packages][master] tar: don't run tests on 32-bit architectures

Clint Adams gitlab at salsa.debian.org
Tue Apr 17 20:12:22 BST 2018


Clint Adams pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
cb1a91e9 by Clint Adams at 2018-04-17T15:11:47-04:00
tar: don't run tests on 32-bit architectures

- - - - -


2 changed files:

- p/haskell-tar/debian/changelog
- p/haskell-tar/debian/rules


Changes:

=====================================
p/haskell-tar/debian/changelog
=====================================
--- a/p/haskell-tar/debian/changelog
+++ b/p/haskell-tar/debian/changelog
@@ -1,3 +1,10 @@
+haskell-tar (0.5.1.0-3) unstable; urgency=medium
+
+  * Don't run tests on 32-bit architectures as some of them are not
+    32-bit-safe.
+
+ -- Clint Adams <clint at debian.org>  Tue, 17 Apr 2018 15:11:23 -0400
+
 haskell-tar (0.5.1.0-2) unstable; urgency=medium
 
   * Enable testsuite.


=====================================
p/haskell-tar/debian/rules
=====================================
--- a/p/haskell-tar/debian/rules
+++ b/p/haskell-tar/debian/rules
@@ -1,7 +1,11 @@
 #!/usr/bin/make -f
 
 DEB_BUILD_DEPENDENCIES = build-arch
-DEB_ENABLE_TESTS = yes
+ifeq (four,$(shell ghc --info | grep -q 'target word size.*"4"' && echo four))
+	DEB_ENABLE_TESTS = no
+else
+	DEB_ENABLE_TESTS = yes
+endif
 
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/hlibrary.mk



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/commit/cb1a91e94d6c737821d212380584b225ee89b038

---
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/commit/cb1a91e94d6c737821d212380584b225ee89b038
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20180417/8d73a127/attachment.html>


More information about the Pkg-haskell-commits mailing list