| Server IP : 104.21.94.62 / Your IP : 216.73.216.41 Web Server : Apache System : Linux semi1.us.cloudlogin.co 5.10.244-xeon-hst #1 SMP Sun Sep 14 17:09:20 UTC 2025 x86_64 User : xessglobal ( 271017) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /lib64/perl5/vendor_perl/Test/LeakTrace/ |
Upload File : |
package Test::LeakTrace::Script;
use strict;
use Test::LeakTrace ();
my $Mode = $ENV{TEST_LEAKTRACE};
sub import{
shift;
$Mode = shift if @_;
}
no warnings 'void';
INIT{
Test::LeakTrace::_start(1);
}
END{
$Mode = -simple unless defined $Mode;
Test::LeakTrace::_finish($Mode);
return;
}
1;
__END__
=head1 NAME
Test::LeakTrace::Script - A LeakTrace interface for whole scripts
=head1 SYNOPSIS
#!perl -w
use Test::LeakTrace::Script sub{
my($svref, $file, $line) = @_;
warn "leaked $svref from $file line $line.\n";
};
=head1 DESCRIPTION
This is a interface to C<Test::LeakTrace> for whole scripts.
=head1 INTERFACE
=head2 Command line interface
$ perl -MTest::LeakTrace::Script script.pl
$ perl -MTest::LeakTrace::Script=-verbose script.pl
$ TEST_LEAKTRACE=-lines script.pl
=head1 ENVIRONMENT VARIABLES
=head2 TEST_LEAKTRACE=mode
=head3 -simple (DEFAULT)
=head3 -sv_dump
=head3 -lines
=head3 -verbose
=head1 SEE ALSO
L<Test::LeakTrace>.
=cut