What in the hell is all that mess?
PERL_DL_NONLAZY=1
- magic to force XS code to strictly check shared libraries
-Iblib/lib -Iblib/lib
- Changes @INC to use the module you're about to install
-I/usr/local/perl5.6.1/lib/5.6.1/ppc-linux-64int ...
- Mistake. Code specific for testing Perl itself that leaked out.
- Causes problems with core modules on CPAN.
- Fixed in latest versions of !MakeMaker.
-e 'use Test::Harness qw(&runtests $verbose);
- import runtests and $verbose
$verbose=0
- This is really $verbose=$(TEST_VERBOSE)
runtests @ARGV;' t/*.t
- Pass in all your tests to Test::Harness::runtests()
t/array.............ok
t/chdir.............ok
t/var...............ok
- Your individual tests are all ok
All tests successful.
Files=3, Tests=48, 2 wallclock secs ( 1.71 cusr + 0.38 csys = 2.09 CPU)
- Benchmark of how long your tests took to run.
Prev | toc | Next