Final update:

I've made my virtual machine with a slew of linux perls in perlbrew, and updating my berrybrew list to include more, I was able to do a complete debug of the problem.

First issue: I was using the default stringification of the floating-point numbers for the comparison in the failing tests... which was what was causing my linux 5.8.5, and the >= 5.22, to pass. Really, they would have been failing if I'd been using my stringification rather than Perl's, and I would have found the real problem before doing my beta release to CPAN to get the CPAN Testers results.

Second issue: Perl has apparently decided to not follow the IEEE Std 754™-2008 rules, which specify that for abs() (and negate() and copySign()), NaNs are to be treated identically to other numeric values, and have the sign bit cleared (or negated, or copied). Since abs never claims to be be following the standard, that's their perogative. I just got rid of all instances of CORE::abs() in my test suite, and have specifically recommended using the module's abs() function when standard-compliant handling of NaN signs is desired.

Now on to the one last feature I'm adding in this group, and then a potential v0.014 live release to CPAN in the near future.

Thanks to ++stevieb and ++syphilis for the advice, debugging, and testing.


In reply to Re: Advice wanted for debugging CPAN Testers failures by pryrt
in thread Advice wanted for debugging CPAN Testers failures by pryrt

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.