r63681 - in /trunk/libtext-csv-xs-perl: CSV_XS.pm ChangeLog META.yml debian/changelog t/80_diag.t

ansgar at users.alioth.debian.org ansgar at users.alioth.debian.org
Wed Oct 13 15:58:32 UTC 2010


Author: ansgar
Date: Wed Oct 13 15:58:22 2010
New Revision: 63681

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=63681
Log:
IGNORE-VERSION: 0.76-1
Fix test on Windows.

Modified:
    trunk/libtext-csv-xs-perl/CSV_XS.pm
    trunk/libtext-csv-xs-perl/ChangeLog
    trunk/libtext-csv-xs-perl/META.yml
    trunk/libtext-csv-xs-perl/debian/changelog
    trunk/libtext-csv-xs-perl/t/80_diag.t

Modified: trunk/libtext-csv-xs-perl/CSV_XS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-csv-xs-perl/CSV_XS.pm?rev=63681&op=diff
==============================================================================
--- trunk/libtext-csv-xs-perl/CSV_XS.pm (original)
+++ trunk/libtext-csv-xs-perl/CSV_XS.pm Wed Oct 13 15:58:22 2010
@@ -30,7 +30,7 @@
 use Carp;
 
 use vars   qw( $VERSION @ISA );
-$VERSION = "0.75";
+$VERSION = "0.76";
 @ISA     = qw( DynaLoader );
 bootstrap Text::CSV_XS $VERSION;
 

Modified: trunk/libtext-csv-xs-perl/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-csv-xs-perl/ChangeLog?rev=63681&op=diff
==============================================================================
--- trunk/libtext-csv-xs-perl/ChangeLog (original)
+++ trunk/libtext-csv-xs-perl/ChangeLog Wed Oct 13 15:58:22 2010
@@ -1,3 +1,6 @@
+2010-10-09 0.76 - H.Merijn Brand   <h.m.brand at xs4all.nl>
+    * Windows doesn't support STDERR redirection as used in t/80_diag
+
 2010-10-05 0.75 - H.Merijn Brand   <h.m.brand at xs4all.nl>
     * Fixed undefinedness of $\ in print (RT#61880)
 

Modified: trunk/libtext-csv-xs-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-csv-xs-perl/META.yml?rev=63681&op=diff
==============================================================================
--- trunk/libtext-csv-xs-perl/META.yml (original)
+++ trunk/libtext-csv-xs-perl/META.yml Wed Oct 13 15:58:22 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                    Text-CSV_XS
-version:                 0.75
+version:                 0.76
 abstract:                Comma-Separated Values manipulation routines
 license:                 perl
 author:              
@@ -10,7 +10,7 @@
 provides:
     Text::CSV_XS:
         file:            CSV_XS.pm
-        version:         0.75
+        version:         0.76
 requires:     
     perl:                5.005
     DynaLoader:          0

Modified: trunk/libtext-csv-xs-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-csv-xs-perl/debian/changelog?rev=63681&op=diff
==============================================================================
--- trunk/libtext-csv-xs-perl/debian/changelog (original)
+++ trunk/libtext-csv-xs-perl/debian/changelog Wed Oct 13 15:58:22 2010
@@ -1,3 +1,10 @@
+libtext-csv-xs-perl (0.76-1) UNRELEASED; urgency=low
+
+  IGNORE-VERSION: 0.76-1
+  Fix test on Windows.
+
+ -- Ansgar Burchardt <ansgar at debian.org>  Wed, 13 Oct 2010 17:56:57 +0200
+
 libtext-csv-xs-perl (0.75-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libtext-csv-xs-perl/t/80_diag.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-csv-xs-perl/t/80_diag.t?rev=63681&op=diff
==============================================================================
--- trunk/libtext-csv-xs-perl/t/80_diag.t (original)
+++ trunk/libtext-csv-xs-perl/t/80_diag.t Wed Oct 13 15:58:22 2010
@@ -116,7 +116,10 @@
     like ($@, qr '^# CSV_XS ERROR: 2027 -', "2 - error message");
     }
 
-{   my $diag_file = "_$$.out";
+SKIP: {
+    $^O =~ m/MSWin/i and skip "Windows does not support STDERR redirection as used in these tests", 23;
+
+    my $diag_file = "_$$.out";
     open  EH,     ">&STDERR";
     open  STDERR, ">$diag_file";
     ok ($csv->_cache_diag,	"Cache debugging output");




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