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