Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the IO-All CPAN distribution.

Report information
The Basics
Id: 12049
Status: resolved
Priority: 0/
Queue: IO-All

People
Owner: Nobody in particular
Requestors: barbie [...] missbarbell.co.uk
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.33
Fixed in: (no value)



Subject: fileno.t breaks on Windows command line too
Recently tried to install IO::All and discovered that the fileno.t tests failed even running 'nmake test' on the command line. I don't know if this is all variants of Windows, but I'm running ActivePerl 5.6.1 on Windows 2000 Pro. Patch attached.
--- C:\wip\diffs\IO-All\IO-All-0.33/t/fileno.t Fri Dec 17 10:32:54 2004 +++ C:\wip\diffs\IO-All\IO-All-0.33-barbie/t/fileno.t Tue Mar 29 13:42:08 2005 @@ -5,8 +5,8 @@ use IO::All; use IO_All_Test; -plan((lc($^O) eq 'mswin32' and defined $ENV{PERL5_CPANPLUS_IS_RUNNING}) - ? (skip_all => "CPANPLUS/MSWin32 breaks this") +plan((lc($^O) eq 'mswin32') + ? (skip_all => "MSWin32 breaks this") : (tests => 7) );