r51890 - in /trunk/libbsd-resource-perl/debian: changelog rules
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Sat Jan 30 18:47:13 UTC 2010
Author: gregoa
Date: Sat Jan 30 18:47:05 2010
New Revision: 51890
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=51890
Log:
debian/rules: don't run the tests that randomly fail; note that upstream
writes in INSTALL: "... known to be tricky and to fail once in a while.
This is because the results depend on timing issues and the activity of
the operating system, it is moderately icky to guestimate such tolerances
that leave some slack while still proving anything." (closes: #560643).
Modified:
trunk/libbsd-resource-perl/debian/changelog
trunk/libbsd-resource-perl/debian/rules
Modified: trunk/libbsd-resource-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libbsd-resource-perl/debian/changelog?rev=51890&op=diff
==============================================================================
--- trunk/libbsd-resource-perl/debian/changelog (original)
+++ trunk/libbsd-resource-perl/debian/changelog Sat Jan 30 18:47:05 2010
@@ -1,3 +1,13 @@
+libbsd-resource-perl (1.2903-3) UNRELEASED; urgency=low
+
+ * debian/rules: don't run the tests that randomly fail; note that upstream
+ writes in INSTALL: "... known to be tricky and to fail once in a while.
+ This is because the results depend on timing issues and the activity of
+ the operating system, it is moderately icky to guestimate such tolerances
+ that leave some slack while still proving anything." (closes: #560643).
+
+ -- gregor herrmann <gregoa at debian.org> Sat, 30 Jan 2010 19:42:06 +0100
+
libbsd-resource-perl (1.2903-2) unstable; urgency=low
[ Nathan Handler ]
Modified: trunk/libbsd-resource-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libbsd-resource-perl/debian/rules?rev=51890&op=diff
==============================================================================
--- trunk/libbsd-resource-perl/debian/rules (original)
+++ trunk/libbsd-resource-perl/debian/rules Sat Jan 30 18:47:05 2010
@@ -1,10 +1,11 @@
#!/usr/bin/make -f
+
+TEST_FILES = $(filter-out t/getrusage.t t/times.t,$(shell echo t/*.t))
%:
dh $@
# See #560643
-# one of the tests fails in very rare circumstances and we want some debug
-# output
+# two of the tests fail arbitralily
override_dh_auto_test:
- prove --blib --verbose
+ dh_auto_test -- TEST_FILES="$(TEST_FILES)"
More information about the Pkg-perl-cvs-commits
mailing list