does your cpan client disable sitecustomize.pl ? PERL5OPT?

I thought I'd fun up an install I have with sitecustomize.pl with

use Data::Dump qw/ dd pp /; use Time::HiRes qw/ time sleep /; use Benchmark qw/ cmpthese /;

After about a year I noticed some tests failing because of time ( 1376987115 != 1376987115.29688 )

Even if I used  $ENV{PERL5OPT}=q{ -MData::Dump=dd,pp -MTime::HiRes=time,sleep -MBenchmark=cmpthese }; the same tests would fail

I think pretty much all cpan clients let these options though, so now I switched to

my $cpanclients = grep { exists $ENV{$_} } qw{ AUTOMATED_TESTING NONINTERACTIVE_TESTING EXTENDED_TESTING RELEASE_TESTING AUTHOR_TESTING PERL5_CPANPLUS_IS_VERSION PERL5_CPANPLUS_IS_RUNNING PERL5_CPAN_IS_RUNNING CPAN_SHELL_LEVEL };;;;;; use if !$cpanclients qw/ Data::Dump dd pp /; use if !$cpanclients qw/ Time::HiRes time sleep /; use if !$cpanclients qw/ Benchmark cmpthese /;

I can understand inheriting @INC changes, but not all the other stuff


In reply to does your cpan client disable sitecustomize.pl ? PERL5OPT? be careful by Anonymous Monk

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.