In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/36aa5d0de00a5c6bf7066b4a1e2370ffd8de6b8b?hp=90f2cc9a600117a49f8ee3e30cc681f062350c24>
- Log ----------------------------------------------------------------- commit 36aa5d0de00a5c6bf7066b4a1e2370ffd8de6b8b Author: James E Keenan <[email protected]> Date: Tue Feb 21 10:16:37 2017 -0500 Add t/comp/parser_run.t to MANIFEST. To keep t/porting/test_bootstrap.t happy, we need to declare the new test file as an exception in that it says 'require test.pl' which tests in t/comp/ are normally not permitted to do. ----------------------------------------------------------------------- Summary of changes: MANIFEST | 1 + t/porting/test_bootstrap.t | 12 +++++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/MANIFEST b/MANIFEST index 1e93ed3c48..ef1d98472e 100644 --- a/MANIFEST +++ b/MANIFEST @@ -5296,6 +5296,7 @@ t/comp/our.t Tests for our declaration t/comp/package.t See if packages work t/comp/package_block.t See if package block syntax works t/comp/parser.t See if the parser works in edge cases +t/comp/parser_run.t See if parser works in additional edge case t/comp/proto.t See if function prototypes work t/comp/redef.t See if we get correct warnings on redefined subs t/comp/require.t See if require works diff --git a/t/porting/test_bootstrap.t b/t/porting/test_bootstrap.t index 77df867f28..3371823995 100644 --- a/t/porting/test_bootstrap.t +++ b/t/porting/test_bootstrap.t @@ -17,11 +17,13 @@ plan('no_plan'); open my $fh, '<', '../MANIFEST' or die "Can't open MANIFEST: $!"; # Three tests in t/comp need to use require or use to get their job done: -my %exceptions = (hints => "require './test.pl'", - parser => 'use DieDieDie', - proto => 'use strict', - ); - +my %exceptions = ( + hints => "require './test.pl'", + parser => 'use DieDieDie', + parser_run => "require './test.pl'", + proto => 'use strict', + ); + while (my $file = <$fh>) { next unless $file =~ s!^t/!!; chomp $file; -- Perl5 Master Repository
