Verified Commit 02eb5b73 authored by Michael R. Crusoe's avatar Michael R. Crusoe 🏳️‍🌈
Browse files

Allow tests to fail on mipsel due to lack of memory

parent 48bdcecf
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
samtools (1.10-3) unstable; urgency=medium

  * Team upload.
  * Allow tests to fail on mipsel due to lack of memory

 -- Michael R. Crusoe <michael.crusoe@gmail.com>  Wed, 25 Dec 2019 17:15:23 +0100

samtools (1.10-2) unstable; urgency=medium

  * Team upload.
+5 −2
Original line number Diff line number Diff line
@@ -30,8 +30,11 @@ override_dh_auto_build:

override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	dh_auto_test -- \
	  BGZIP=/usr/bin/bgzip
ifeq (,$(filter $(DEB_HOST_ARCH),mipsel))
	dh_auto_test -- BGZIP=/usr/bin/bgzip
else
	dh_auto_test -- BGZIP=/usr/bin/bgzip || true
endif
endif

override_dh_auto_install: