1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::Weaken;
# uncomment this to run the ### lines
use Smart::Comments;
{
# Array::RefElem stored global detected
use Array::RefElem;
my $global = 123;
my $tw = Test::Weaken::leaks
({
constructor => sub {
my @array;
my $aref = \@array;
&Array::RefElem::av_store (\$aref, 0, $global);
# Array::RefElem::av_store (@$aref, 0, $global);
return \@array;
# Array::RefElem::av_store (\@array, 0, $global);
# return \@array;
},
});
### $tw
exit 0;
}
{
# Tie::RefHash::Weak key objects are detected
my $global;
my $tw = Test::Weaken::leaks
({
constructor => sub {
require Tie::RefHash::Weak;
my %hash;
my $key = [ 123 ];
# $global = $key;
my $value = [ 456 ];
tie %hash, 'Tie::RefHash::Weak', $key => $value;
print values %hash,"\n";
### keyaddr: $key+0
### tieobj: tied %hash
return \%hash;
},
});
### $tw
exit 0;
}
{
# Tie::RefHash key objects are detected
my $global;
my $tw = Test::Weaken::leaks
({
constructor => sub {
require Tie::RefHash;
my %hash;
my $key = [ 123 ];
$global = $key;
my $value = [ 456 ];
tie %hash, 'Tie::RefHash', $key => $value;
print values %hash,"\n";
### keyaddr: $key+0
### tieobj: tied %hash
return \%hash;
},
});
### $tw
exit 0;
}
|