r50587 - in /branches/upstream/libipc-system-simple-perl/current: Changes lib/IPC/System/Simple.pm t/win32.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Jan 9 18:15:39 UTC 2010


Author: jawnsy-guest
Date: Sat Jan  9 18:15:26 2010
New Revision: 50587

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50587
Log:
[svn-upgrade] Integrating new upstream version, libipc-system-simple-perl (1.20)

Modified:
    branches/upstream/libipc-system-simple-perl/current/Changes
    branches/upstream/libipc-system-simple-perl/current/lib/IPC/System/Simple.pm
    branches/upstream/libipc-system-simple-perl/current/t/win32.t

Modified: branches/upstream/libipc-system-simple-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-system-simple-perl/current/Changes?rev=50587&op=diff
==============================================================================
--- branches/upstream/libipc-system-simple-perl/current/Changes (original)
+++ branches/upstream/libipc-system-simple-perl/current/Changes Sat Jan  9 18:15:26 2010
@@ -1,6 +1,13 @@
 Revision history for Perl extension IPC::System::Simple.
 
-1.19  Fri Dec  4 14:14:25 EST 2009
+1.20  Sat Jan  9 15:08:41 AUSEST 2010
+
+        * TEST: t/win32.t no longer claims to have more tests than
+          it really has.  This fixes an install issue under Windows.
+          RT #53124.  Thanks to Erez Schatz and Curtis Jewell for
+          spotting this.
+
+1.19  Fri Dec  4 14:14:25 AUSEST 2009
 
         * TEST: Added tests to ensure correct behaviour when
           calling commands in Windows which are contained in directories

Modified: branches/upstream/libipc-system-simple-perl/current/lib/IPC/System/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-system-simple-perl/current/lib/IPC/System/Simple.pm?rev=50587&op=diff
==============================================================================
--- branches/upstream/libipc-system-simple-perl/current/lib/IPC/System/Simple.pm (original)
+++ branches/upstream/libipc-system-simple-perl/current/lib/IPC/System/Simple.pm Sat Jan  9 18:15:26 2010
@@ -84,7 +84,7 @@
     $EXITVAL EXIT_ANY
 );
 
-our $VERSION = '1.19';
+our $VERSION = '1.20';
 our $EXITVAL = -1;
 
 my @Signal_from_number = split(' ', $Config{sig_name});

Modified: branches/upstream/libipc-system-simple-perl/current/t/win32.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-system-simple-perl/current/t/win32.t?rev=50587&op=diff
==============================================================================
--- branches/upstream/libipc-system-simple-perl/current/t/win32.t (original)
+++ branches/upstream/libipc-system-simple-perl/current/t/win32.t Sat Jan  9 18:15:26 2010
@@ -27,7 +27,7 @@
 use constant CMD_WITH_SPACES        => 'dir with spaces\hello.exe';
 use constant CMD_WITH_SPACES_OUTPUT => "Hello World\n";
 
-plan tests => 32;
+plan tests => 30;
 
 my $perl_path = $Config{perlpath};
 $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i;
@@ -131,7 +131,7 @@
     is($@, "", "command with spaces should not error (capturex)");
     is($output, CMD_WITH_SPACES_OUTPUT, "...and give correct output");
 
-    my $output = eval { capture(CMD_WITH_SPACES); };
+    $output = eval { capture(CMD_WITH_SPACES); };
 
     is($@, "", "command with spaces should not error (capture)");
     is($output, CMD_WITH_SPACES_OUTPUT, "...and give correct output");




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