r52553 - in /trunk/libipc-shareable-perl/debian: changelog patches/series patches/test-block

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Thu Feb 11 16:34:46 UTC 2010


Author: gregoa
Date: Thu Feb 11 16:34:40 2010
New Revision: 52553

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52553
Log:
* New patch test-block, grabbed from CPAN RT#19169; workaround blocking test
  (closes: #549760).

Added:
    trunk/libipc-shareable-perl/debian/patches/test-block
Modified:
    trunk/libipc-shareable-perl/debian/changelog
    trunk/libipc-shareable-perl/debian/patches/series

Modified: trunk/libipc-shareable-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-shareable-perl/debian/changelog?rev=52553&op=diff
==============================================================================
--- trunk/libipc-shareable-perl/debian/changelog (original)
+++ trunk/libipc-shareable-perl/debian/changelog Thu Feb 11 16:34:40 2010
@@ -1,6 +1,4 @@
 libipc-shareable-perl (0.60-8) UNRELEASED; urgency=low
-
-  NOTE: It builds fine for me. -- ghostbar
 
   [ Gunnar Wolf ]
   * Added README.source to document quilt usage
@@ -14,7 +12,9 @@
     permitted by Debian Policy 3.8.3).
 
   [ gregor herrmann ]
-  * Refresh patch and add DEP3 headers.
+  * Refresh patch fix_perl_5.10_compat and add DEP3 headers.
+  * New patch test-block, grabbed from CPAN RT#19169; workaround blocking test
+    (closes: #549760).
 
  -- Gunnar Wolf <gwolf at debian.org>  Wed, 03 Dec 2008 11:19:04 -0600
 

Modified: trunk/libipc-shareable-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-shareable-perl/debian/patches/series?rev=52553&op=diff
==============================================================================
--- trunk/libipc-shareable-perl/debian/patches/series (original)
+++ trunk/libipc-shareable-perl/debian/patches/series Thu Feb 11 16:34:40 2010
@@ -1,1 +1,2 @@
 fix_perl_5.10_compat
+test-block

Added: trunk/libipc-shareable-perl/debian/patches/test-block
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-shareable-perl/debian/patches/test-block?rev=52553&op=file
==============================================================================
--- trunk/libipc-shareable-perl/debian/patches/test-block (added)
+++ trunk/libipc-shareable-perl/debian/patches/test-block Thu Feb 11 16:34:40 2010
@@ -1,0 +1,21 @@
+Author: Ton Voon <TONVOON at cpan.org>
+Description: workaround test lockup
+ I've found this is a problem with the speed of response to a kill ALRM. The parent must be 
+ sending the ALRM signal so quickly that the child doesn't get to process it soon enough. My 
+ fix was to add a sleep 1 after the first ALRM.
+ .
+ I now get consistent passes for this test.
+Bugs-Debian: http://bugs.debian.org/549760
+Bugs: https://rt.cpan.org/Public/Bug/Display.html?id=19169
+Origin: https://rt.cpan.org/Public/Bug/Display.html?id=19169
+
+--- a/t/38ipchv.t
++++ b/t/38ipchv.t
+@@ -70,6 +70,7 @@
+     });
+     %hv = ();
+     kill ALRM => $pid;
++    sleep 1;           # Allow time for child to process the signal before next ALRM comes in
+     
+     for (qw(eenie meenie minie moe)) {
+ 	$ipch->shlock();




More information about the Pkg-perl-cvs-commits mailing list