]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - README
This is 0.05
[perl/modules/Test-Valgrind.git] / README
1 NAME
2     Test::Valgrind - Test Perl code through valgrind.
3
4 VERSION
5     Version 0.05
6
7 SYNOPSIS
8         use Test::More;
9         eval 'use Test::Valgrind';
10         plan skip_all => 'Test::Valgrind is required to test your distribution with valgrind' if $@;
11
12         # Code to inspect for memory leaks/errors.
13
14 DESCRIPTION
15     This module lets you run some code through the valgrind memory debugger,
16     to test it for memory errors and leaks. Just add "use Test::Valgrind" at
17     the beginning of the code you want to test. Behind the hood,
18     "Test::Valgrind::import" forks so that the child can basically "exec
19     'valgrind', $^X, $0" (except that of course $0 isn't right there). The
20     parent then parses the report output by valgrind and pass or fail tests
21     accordingly.
22
23     You can also use it from the command-line to test a given script :
24
25         perl -MTest::Valgrind leaky.pl
26
27     Due to the nature of perl's memory allocator, this module can't track
28     leaks of Perl objects. This includes non-mortalized scalars and memory
29     cycles. However, it can track leaks of chunks of memory allocated in XS
30     extensions with "Newx" and friends or "malloc". As such, it's
31     complementary to the other very good leak detectors listed in the "SEE
32     ALSO" section.
33
34 CONFIGURATION
35     You can pass parameters to "import" as a list of key / value pairs,
36     where valid keys are :
37
38     *   "supp => $file"
39
40         Also use suppressions from $file besides perl's.
41
42     *   "no_supp => $bool"
43
44         If true, do not use any suppressions.
45
46     *   "callers => $number"
47
48         Specify the maximum stack depth studied when valgrind encounters an
49         error. Raising this number improves granularity. Default is 12.
50
51     *   "extra => [ @args ]"
52
53         Add @args to valgrind parameters.
54
55     *   "diag => $bool"
56
57         If true, print the raw output of valgrind as diagnostics (may be
58         quite verbose).
59
60     *   "no_test => $bool"
61
62         If true, do not actually output the plan and the tests results.
63
64     *   "cb => sub { my ($val, $name) = @_; ...; return $passed }"
65
66         Specifies a subroutine to execute for each test instead of
67         "Test::More::is". It receives the number of bytes leaked in $_[0]
68         and the test name in $_[1], and is expected to return true if the
69         test passed and false otherwise. Defaults to
70
71             sub {
72              is($_[0], 0, $_[1]);
73              (defined $_[0] and $_[0] == 0) : 1 : 0
74             }
75
76 CAVEATS
77     You can't use this module to test code given by the "-e" command-line
78     switch.
79
80     Results will most likely be better if your perl is built with debugging
81     enabled. Using the latest valgrind available will also help.
82
83     This module is not really secure. It's definitely not taint safe. That
84     shouldn't be a problem for test files.
85
86     If your tests output to STDERR, everything will be eaten in the process.
87     In particular, running this module against test files will obliterate
88     their original test results.
89
90 DEPENDENCIES
91     Valgrind 3.1.0 (<http://valgrind.org>).
92
93     Carp, POSIX (core modules since perl 5) and Test::More (since 5.6.2).
94
95     Perl::Destruct::Level.
96
97 SEE ALSO
98     Devel::Leak, Devel::LeakTrace, Devel::LeakTrace::Fast.
99
100 AUTHOR
101     Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
102
103     You can contact me by mail or on #perl @ FreeNode (vincent or
104     Prof_Vince).
105
106 BUGS
107     Please report any bugs or feature requests to "bug-test-valgrind at
108     rt.cpan.org", or through the web interface at
109     <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Valgrind>. I will
110     be notified, and then you'll automatically be notified of progress on
111     your bug as I make changes.
112
113 SUPPORT
114     You can find documentation for this module with the perldoc command.
115
116         perldoc Test::Valgrind
117
118 ACKNOWLEDGEMENTS
119     RafaĆ«l Garcia-Suarez, for writing and instructing me about the
120     existence of Perl::Destruct::Level (Elizabeth Mattijsen is a close
121     second).
122
123     H.Merijn Brand, for daring to test this thing.
124
125 COPYRIGHT & LICENSE
126     Copyright 2008 Vincent Pit, all rights reserved.
127
128     This program is free software; you can redistribute it and/or modify it
129     under the same terms as Perl itself.
130