File: memory.t

package info (click to toggle)
libmath-random-secure-perl 0.080001-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 368; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 800 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/perl

#  Tests that there are no memory leaks.
#  Taken from the Math::Random::ISAAC tests under the public domain
#  license.

use strict;
use warnings;
use Test::More;
use Math::Random::Secure;

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 => 3;

Test::LeakTrace->import;

no_leaks_ok(sub {
  for (0..10) {
    Math::Random::Secure::srand();
  }
}, 'srand does not leak memory');

no_leaks_ok(sub {
  for (0..30) {
    Math::Random::Secure::irand();
  }
}, 'irand does not leak memory');

no_leaks_ok(sub {
  for (0..30) {
    Math::Random::Secure::rand();
  }
}, 'rand does not leak memory');