In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/5e515724d0580d976a17b04531ee4684008eaae4?hp=55d0b987f5c0a65ea8e4c104e3d0755cd935d9be>
- Log ----------------------------------------------------------------- commit 5e515724d0580d976a17b04531ee4684008eaae4 Author: David Golden <[email protected]> Date: Tue Jul 20 04:04:26 2010 -0400 don't use Test::More in dual-life.t M t/porting/dual-life.t commit 67c865800ec6e376afe38356f9b75d7805dc7203 Author: David Golden <[email protected]> Date: Tue Jul 20 03:38:04 2010 -0400 perl5133delta.pod refer to \o{...} consistently M pod/perl5133delta.pod ----------------------------------------------------------------------- Summary of changes: pod/perl5133delta.pod | 4 ++-- t/porting/dual-life.t | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pod/perl5133delta.pod b/pod/perl5133delta.pod index 0ac6c80..5bcc776 100644 --- a/pod/perl5133delta.pod +++ b/pod/perl5133delta.pod @@ -72,7 +72,7 @@ C<\x{1FF}>, with no deprecation warning. Use of these values in the command line option C<"-0"> retains the current meaning to slurp input files whole; previously, this was documented only for C<"-0777">. It is recommended, however, because of various ambiguities, to use the new -L</\o{...}> construct to represent characters in octal. +C<\o{...}> construct to represent characters in octal. (fa1639c..f6993e9). =head1 Deprecations @@ -290,7 +290,7 @@ The Perl 5.12.1 perldelta file was added from the Perl maintenance branch =item * Octal character escapes in documentation now prefer a three-digit octal -escape or the new C<\o{}> escape as they have more consistent behavior +escape or the new C<\o{...}> escape as they have more consistent behavior in different contexts than other forms. (ce7b6f0) (d8b950d) (e1f120a) =item * diff --git a/t/porting/dual-life.t b/t/porting/dual-life.t index cf53d9a..6165992 100644 --- a/t/porting/dual-life.t +++ b/t/porting/dual-life.t @@ -6,10 +6,13 @@ use strict; # # * Are all dual-life programs being generated in utils/? +require './test.pl'; + +plan('no_plan'); + use File::Basename; use File::Find; use File::Spec::Functions; -use Test::More; END { done_testing } # Exceptions are found in dual-life bin dirs but aren't # installed by default -- Perl5 Master Repository
