[Pkg-clamav-commits] [SCM] Debian repository for ClamAV branch, debian/unstable, updated. debian/0.95+dfsg-1-23-g5372bfe

Michael Tautschnig mt at debian.org
Mon Mar 30 06:15:13 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0e618c76beda6e05bad20f07380beb7bff7d7b75
Author: Michael Tautschnig <mt at debian.org>
Date:   Mon Mar 30 07:54:12 2009 +0200

    Ignore errors in the testsuite on alpha, ia64, sparc
    
    - Bugs are probably within libc, not clamav
    
    Signed-off-by: Michael Tautschnig <mt at debian.org>

diff --git a/debian/changelog b/debian/changelog
index 28fa275..3292ec2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,8 @@ clamav (0.95+dfsg-2) unstable; urgency=low
   * Added Homepage: control field
   * Another watch file fix to rank upstreams rc lower than releases.
   * Even more /var/run-on-tmpfs fixes.
+  * Ignore failing test suite on alpha, ia64, sparc (bugs filed against
+    glibc).
 
   [ Stephen Gran ]
   * Lots of option handling fixups for clamav-milter
diff --git a/debian/rules b/debian/rules
index 3d25883..efecfb6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -114,7 +114,12 @@ endif
 check:
 	dh_testdir
 ifeq ($(with_check),yes)
+ifneq (,$(filter alpha ia64 sparc, $(shell dpkg-architecture)))
+	@echo "Ignoring errors because of #521737, #521556, #521688"
+	-$(MAKE) check
+else
 	$(MAKE) check
+endif
 else
 	@echo "Testsuite not run: $(with_check)."
 endif

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list