Upgrade to Test::Harness 2.21.
[p5sagit/p5-mst-13.2.git] / lib / Test / Harness / Changes
CommitLineData
2fe373ce 1Revision history for Perl extension Test::Harness
2
308957f5 32.21 Mon May 6 00:43:22 EDT 2002
4 - removed a bunch of dead code left over after 2.20's gutting.
5 - The fix for the $^X "bug" added in 2.02 has been removed. It
6 caused more trouble than the old bug (I'd never seen a problem
7 before anyway)
8 - 2.20 broke $verbose
9
102.20 Sat May 4 22:31:20 EDT 2002
11 * An almost complete conversion of the Test::Harness test parsing
12 to use Test::Harness::Straps.
13
142.04 Tue Apr 30 00:54:49 EDT 2002
15 * Changing the output format of skips
16 - Taking into account VMS's special exit codes in the tests.
17
356733da 182.03 Thu Apr 25 01:01:34 EDT 2002
19 * $^X fix made safer.
20 - Noise from loading wait.ph to analyze core files supressed
21 - MJD found a situation where a test could run Test::Harness
22 out of memory. Protecting against that specific case.
23 - Made the 1..M docs a bit clearer.
24 - Fixed TODO tests so Test::Harness does not display a NOK for
25 them.
26 - Test::Harness::Straps->analyze_file() docs were not clear as to
27 its effects
28
292.02 Thu Mar 14 18:06:04 EST 2002
30 * Ken Williams fixed the long standing $^X bug.
31 * Added HARNESS_VERBOSE
32 * Fixed a bug where Test::Harness::Straps was considering a test that
33 is ok but died as passing.
34 - Added the exit and wait codes of the test to the
35 analyze_file() results.
36
13287dd5 372.01 Thu Dec 27 18:54:36 EST 2001
38 * Added 'passing' to the results to tell you if the test passed
39 * Added Test::Harness::Straps example (examples/mini_harness.plx)
40 * Header-at-end tests were being interpreted as failing sometimes
41 - The 'skip_all' results from analyze* was not being set
42 - analyze_fh() and analyze_file() now work more efficiently, reading
43 line-by-line instead of slurping as before.
44
452.00 Sun Dec 23 19:13:57 EST 2001
46 - Fixed a warning on VMS.
47 - Removed a little unnecessary code from analyze_file()
48 - Made sure filehandles are getting closed
49 - analyze() now considers "not \nok" to be a failure (VMSism)
50 but Test::Harness still doesn't.
51
522.00_05 Mon Dec 17 22:08:02 EST 2001
53 * Wasn't filtering @INC properly when a test is run with -T, caused the
54 command line to be too long on VMS. VMS should be 100% now.
55 - Little bug in the skip 'various reasons' logic.
56 - Minor POD nit in 5.004_04
57 - Little speling mistak
58
592.00_04 Sun Dec 16 00:33:32 EST 2001
60 * Major Test::Harness::Straps doc bug.
61
622.00_03 Sat Dec 15 23:52:17 EST 2001
63 * First release candidate
64 * 'summary' is now 'details'
65 * Test #1 is now element 0 on the details array. It works out better
66 that way.
67 * analyze_file() is more portable, but no longer taint clean
68 * analyze_file() properly preserves @INC and handles -T switches
69 - minor mistake in the test header line parsing
70
433ad7b6 711.26 Mon Nov 12 15:44:01 EST 2001
72 * An excuse to upload a new version to CPAN to get Test::Harness
73 back on the index.
74
13287dd5 752.00_00 Sat Sep 29 00:12:03 EDT 2001
76 * Partial gutting of the internals
77 * Added Test::Harness::Straps
78
2fe373ce 791.25 Tue Aug 7 08:51:09 EDT 2001
80 * Fixed a bug with tests failing if they're all skipped
81 reported by Stas Bekman.
82 - Fixed a very minor warning in 5.004_04
83 - Fixed displaying filenames not from @ARGV
84 - Merging with bleadperl
85 - minor fixes to the filename in the report
86 - '[no reason given]' skip reason
87
13287dd5 881.24 Tue Aug 7 08:51:09 EDT 2001
2fe373ce 89 - Added internal information about number of todo tests
90
911.23 Tue Jul 31 15:06:47 EDT 2001
92 - Merged in Ilya's "various reasons" patch
93 * Fixed "not ok 23 - some name # TODO" style tests
94
951.22 Mon Jun 25 02:00:02 EDT 2001
96 * Fixed bug with failing tests using header at end.
97 - Documented how Test::Harness deals with garbage input
98 - Turned on test counter mismatch warning
99
1001.21 Wed May 23 19:22:53 BST 2001
101 * No longer considered unstable. Merging back with the perl core.
102 - Fixed minor nit about the report summary
103 - Added docs on the meaning of the failure report
104 - Minor POD nits fixed mirroring perl change 9176
105 - TODO and SEE ALSO expanded
106
1071.20 Wed Mar 14 23:09:20 GMT 2001 by Michael G Schwern *UNSTABLE*
108 * Fixed and tested with 5.004!
109 - Added EXAMPLE docs
110 - Added TODO docs
111 - Now uneffected by -l, $\ or $,
112
1131.19 Sat Mar 10 00:43:29 GMT 2001 by Michael G Schwern *UNSTABLE*
114 - More internal reworking
115 * Removed use of experimental /(?>...)/ feature for backwards compat
116 * Removed use of open(my $fh, $file) for backwards compatibility
117 * Removed use of Tie::StdHandle in tests for backwards compat
118 * Added dire warning that this is unstable.
119 - Added some tests from the old CPAN release
120
1211.18 Mon Mar 5 17:35:11 GMT 2001 by Michael G Schwern
122 * Under new management!
123 * Test::Harness is now being concurrently shipped on CPAN as well
124 as in the core.
125 - Switched "our" for "use vars" and moved the minimum version back
126 to 5.004. This may be optimistic.
127
128
129*** Missing version history to be extracted from Perl changes ***
130
131
1321.07 Fri Feb 23 1996 by Andreas Koenig
133 - Gisle sent me a documentation patch that showed me, that the
134 unless(/^#/) is unnessessary. Applied the patch and deleted the block
135 checking for "comment" lines. -- All lines are comment lines that do
136 not match /^1\.\.([0-9]+)/ or /^(not\s+)?ok\b/.
137 - Ilyaz request to print "ok (empty test case)" whenever we say 1..0
138 implemented.
139 - Harness now doesn't abort anymore if we received confused test output,
140 just warns instead.
141
1421.05 Wed Jan 31 1996 by Andreas Koenig
143 - More updates on docu and introduced the liberality that the script
144 output may omit the test numbers.
145
1461.03 Mon January 28 1996 by Andreas Koenig
147 - Added the statistics for subtests. Updated the documentation.
148
1491.02 by Andreas Koenig
150 - This version reports a list of the tests that failed accompanied by
151 some trivial statistics. The older (unnumbered) version stopped
152 processing after the first failed test.
153 - Additionally it reports the exit status if there is one.
154
155