Your message dated Sat, 13 Sep 2008 10:29:15 +0000
with message-id <[EMAIL PROTECTED]>
and subject line nocheck
has caused the Debian Bug report #380494,
regarding db4.4: Do not run test suite if DEB_BUILD_OPTIONS contains `nocheck'
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
380494: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=380494
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: db4.4
Version: 4.4.20-7
Tags: patch
Hi,
it would be nice if db4.4 would not run the test suite if `nocheck' is
defined in DEB_BUILD_OPTIONS. This feature is used by large parts of
the toolchain (glibc, gcc, binutils I believe, plus python etc.) already
and I hope to get it included in policy post-etch.
Patch attached.
thanks,
Michael
--- db4.4-4.4.20/debian/rules.orig 2006-07-30 17:40:23.000000000 +0200
+++ db4.4-4.4.20/debian/rules 2006-07-30 17:39:59.000000000 +0200
@@ -82,10 +82,12 @@
cd obj && $(MAKE)
#ifneq (,$(findstring $(DEB_BUILD_GNU_CPU),ia64))
+ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
chmod +x ./debian/runtests.tclsh
cd obj && ../debian/runtests.tclsh || true
grep ^FAIL obj/ALL.OUT || true
+endif
#endif
touch build
--- End Message ---
--- Begin Message ---
Version: 4.4.20-11
Florian fixed this.
--- End Message ---