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
|
#!/usr/bin/perl -T
# Test for memory leaks
use strict;
use warnings;
use Test::More;
use Math::Random::ISAAC::PP ();
if (exists($INC{'Devel/Cover.pm'})) {
plan skip_all => 'This test is not compatible with Devel::Cover';
}
eval {
require Test::LeakTrace;
};
if ($@) {
plan skip_all => 'Test::LeakTrace required to test memory leaks';
}
plan tests => 2;
Test::LeakTrace->import;
no_leaks_ok(sub {
my $obj = Math::Random::ISAAC::PP->new(time);
for (0..10) {
$obj->irand();
}
}, '->irand does not leak memory');
no_leaks_ok(sub {
my $obj = Math::Random::ISAAC::PP->new(time);
for (0..30) {
$obj->rand();
}
}, '->rand does not leak memory');
|