Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: perl 5.12 BSD portability (CPAN test result)...print

by perl-diddler (Chaplain)
on Mar 10, 2013 at 12:29 UTC ( [id://1022659]=note: print w/replies, xml ) Need Help??


in reply to Re: perl 5.12 BSD portability (CPAN test result)...print
in thread perl 5.12 BSD portability (CPAN test result)...print

Why only on BSD and only on P5.12?

Windows...yeah...not interesting fail...missing utils, so some win-specific hack there.

but the fail on 512/Bsd and not linux and not 514 or 516 -- previous report had many more fails on other clients... that only this one is causing probs -- what is diff about this combo? That's what's stumped me...

Have no easy way to test this on a BSD5.12 system though and am not sure if a change like above wouldn't cause probs on other systems.

. As for $fh... P takes 'globs'. or IO handles. Does that answer your Q?
----
later

If I added IO::Handle/IO::File... and if that worked, it would seem to indicated that IO::Handle doesn't have an @ISA relation with IO::Handle. How likely is that on 1 platform?

  • Comment on Re^2: perl 5.12 BSD portability (CPAN test result)...print

Replies are listed 'Best First'.
Re^3: perl 5.12 BSD portability (CPAN test result)...print
by tobyink (Canon) on Mar 10, 2013 at 15:21 UTC

    CPAN test reports are like money - 95% of it is controlled by just 5% of the population (or something like that).

    There are a small handful of individuals who submit a vast number of CPAN test reports. Check the failure reports you are getting - are they all from the same person? If so, perhaps their system is configured unusually.

    Otherwise, I'd personally just document the problem and then forget about it. Something like:

    =head1 BUGS The test suite fails in Perl 5.12 on BSD operating systems. Upgrading to Perl 5.14 or above should solve this problem. Patches to fix the issue would be joyfully accepted.

    PS: for a hint about why this bug doesn't affect 5.14 and above, see Unexpected behavior of function 'say'.

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
      Funny you should mention that example.

      I was pokin' at the code and though, well, maybe I should try

      print $fh [rest of print line]
      It seems with 'say', the above form worked, while the 'preferred' (hmmm) "$fh->say" did not..?

      BTW, FWIW, I'd really hate to put in a BUGS section like that indicating that they'd have to upgrade just because of my module. If I did have to put in a section like that, I'd like to point them to a perlbug# specific for their version & platform -- but that still would beg the question, "why BSD and not linux"? On the level that I'm using perl, they should be identical. If the 5.12 version of perl on BSD was miscompiled, I'd think that would be fixable, no?

      For windows, am wondering if I should just skip those tests that won't work? The execute test on lib/P.pm... yeah, that would be skippable, but the other test is testing the ability to print directly *from* a file descriptor. I think that should work on windows if I write a tiny perl-prog to emulate the function(s) of cat & rev. I.e. its a corner case that's not really worth the effort, but it would probably be the "right thing to do"...;^/

        Did you try the solution I posted earlier?

        use IO::File (); use IO::Handle ();

        ... I strongly suspect it will solve the problem.

        package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1022659]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-23 22:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found