]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blob - Changes
This is 1.17
[perl/modules/Test-Valgrind.git] / Changes
1 Revision history for Test-Valgrind
2
3 1.17    2015-11-13 13:50 UTC
4         + Fix : [RT #108873] : Tests fail due to "Text file busy"
5                 Thanks Paul Howarth for reporting.
6
7 1.16    2015-11-12 23:30 UTC
8         + Chg : The Test::Valgrind tests will now be skipped when the default
9                 and user-supplied suppressions files do not refer to any perl-
10                 related symbol. This behaviour can be overridden by passing
11                 'allow_no_supp => 1' to Test::Valgrind->import.
12                 This fixes the following RT issue.
13         + Fix : [RT #101934] : t/20-bad.t failing on armv7hl
14                 While the root cause of this issue is probably not at
15                 Test::Valgrind's level, it should nevertheless not run the
16                 tests when the suppression files are obviously insufficient.
17                 Thanks Paul Howarth for reporting and providing helpful
18                 feedback.
19         + Fix : The accuracy of the default perl suppression file has been
20                 improved.
21         + Fix : The tests will be more reliably skipped when no valgrind or
22                 no suppressions are found.
23         + Fix : Segmentation faults during the analysis are now more gracefully
24                 handled.
25         + Fix : 'no_def_supp => 1' will no longer cause the extra suppressions
26                 to be ignored.
27         + Tst : t/20-bad.t will no longer run the extra tests when no valgrind
28                 can be found (this was a regression in version 1.15).
29
30 1.15    2015-10-30 16:15 UTC
31         + Add : The new 'regen_def_supp' option can be passed to
32                 Test::Valgrind->import to forcefully regenerate the default
33                 suppression file.
34         + Fix : Build failures of the dummy XS code with PERL_IMPLICIT_SYS
35                 perls.
36         + Fix : Handshake failures in tests with recent perls built with
37                 PERL_POISON.
38         + Tst : Improved diagnostics on failure.
39         + Upd : Freshen Makefile.PL.
40
41 1.14    2013-09-01 17:10 UTC
42         This is a maintenance release. The code contains no functional change.
43         Satisfied users of version 1.13 can skip this update.
44         + Doc : POD headings are now properly linkable.
45         + Tst : Author tests are no longer bundled with this distribution.
46                 They are only made available to authors in the git repository.
47         + Tst : The stack traces used in t/20-bad.t have been made more
48                 predictable when compiler optimizations are in use.
49
50 1.13    2011-08-25 15:45 UTC
51         + Fix : The session will now call the finish() method at the right time.
52         + Fix : The README file is now properly UTF-8-encoded.
53         + Tst : Test demangling of Z-encoded symbols.
54
55 1.12    2009-11-29 16:45 UTC
56         + Doc : The front documentation in Test::Valgrind was improved.
57         + Fix : Don't install Valgrind.so, as it's only used for testing.
58         + Fix : "Non-portable hex number" warnings.
59         + Fix : Old versions of valgrind could leave some Z-encoded symbols in
60                 the stack traces. We now make sure they're always decoded.
61
62 1.11    2009-10-08 20:55 UTC
63         + Doc : Completion and improvements.
64         + Fix : Work around Kwalitee test misfailures.
65         + Upd : Freshen Makefile.PL.
66
67 1.10    2009-09-22 18:45 UTC
68         + Chg : valgrind is no longer required to be installed before installing
69                 this module.
70         + Chg : The parser logic that used to be located inside the tool was
71                 moved to a new Test::Valgrind::Parser hierarchy. The tool
72                 decides which parser should be used by implementing the
73                 "parser_class" method.
74         + Fix : Compatibility with valgrind 3.5.
75         + Fix : The "valgrind" option to Test::Valgrind::Session->new wasn't
76                 doing anything.
77         + Fix : The "Test" action could generate inappropriate error messages.
78
79 1.02    2009-05-02 12:05 UTC
80         + Add : Commands can now be aggregated.
81         + Add : The commands can now also filter and mangle reports.
82         + Chg : The perl suppressions are now stripped from everything below
83                 Perl_runops_*.
84         + Doc : Typos, nits and clarifications.
85
86 1.01    2009-04-14 21:15 UTC
87         + Add : Allow testing code given by -e. Hurray for source filters!
88         + Fix : Lazily load version.pm in Test::Valgrind::Session so that it's
89                 not really needed at configure time.
90         + Fix : Don't unload dynamic extensions by default so that their symbols
91                 still appear in the stack traces.
92
93 1.00    2009-04-12 22:50 UTC
94         Complete rewrite. The options passed to Test::Valgrind->import have
95         changed, so please have a look at the doc.
96         + Add : A brand new reusable API.
97         + Add : Suppressions are now versionized following the perl interpreter
98                 and valgrind. They are regenerated as needed and stored in the
99                 user home directory.
100         + Add : memcheck output is parsed by XML::Twig.
101         + Add : The output of the original script is now correctly captured.
102         + Rem : Lots of ugly hacks in the toolchain.
103
104 0.08    2009-02-08 18:25 UTC
105         + Add : Unload the libraries loaded by DynaLoader at END time, reducing
106                 the number of leaks in perl.
107         + Rem : The useless t/21-good-block.t.
108         + Upd : META.yml spec updated to 1.4.
109
110 0.07    2008-09-30 13:35 UTC
111         + Chg : Now conforms to the Test::Builder framework.
112         + Fix : STDERR is longer eaten.
113         + Fix : Eat STDOUT or print it as diagnostics, but never let him go
114                 through naked, as this may fiddle with the tests output.
115         + Fix : 'make test' without prior 'make'.
116
117 0.06    2008-09-09 22:10 UTC
118         + Fix : Suppressions were installed in the wrong path. Thanks Marvin
119                 Humphrey for reporting this.
120         + Fix : Really load XSLoader when generating suppressions. Thanks Marvin
121                 Humphrey again for bringing this to my attention.
122         + Fix : The logic for finding the file to run through valgrind was
123                 flawed, which lead to generate suppressions against
124                 Test/Valgrind.pm only.
125
126 0.051   2008-09-02 17:20 UTC
127         + Fix : Forgot to upgrade version of the suppression placeholder module.
128
129 0.05    2008-08-25 22:05 UTC
130         + Chg : Lower the default caller to 12.
131         + Tst : Add a real-life test that gets executed only if you have a C
132                 compiler.
133
134 0.04    2008-05-13 16:25 UTC
135         + Chg : Don't smoke this on 5.005 please.
136         + Chg : Better way to find the valgrind executable.
137
138 0.03    2008-04-21 15:35 UTC
139         + Fix : Include the mock Suppressions.pm rather than an empty file.
140
141 0.02    2008-04-21 15:25 UTC
142         + Add : Test::Valgrind now depends on Perl::Destruct::Level. This is
143                 needed for non-debugging perls because we can't set their
144                 level of memory cleanup correctness on exit with the
145                 PERL_DESTRUCT_LEVEL environment variable.
146         + Add : Hardcode valgrind path into the new constant
147                 Test::Valgrind::Suppressions::VG_PATH.
148         + Chg : Test::Valgrind::Suppressions::supppath() is now supp_path().
149         + Chg : lib/Test/Valgrind/Suppressions.pm.tpl was renamed to
150                 lib/Test/Valgrind/Suppressions.tpl for file portability reasons.
151
152 0.01    2008-04-19 15:50 UTC
153         First version, released on an unsuspecting world.
154