In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/1fdb5498519a40e7ce6b5adced61c49638141e25?hp=fdc080f3f22884c216544189aa3e6d2881d62aca>
- Log ----------------------------------------------------------------- commit 1fdb5498519a40e7ce6b5adced61c49638141e25 Author: Craig A. Berry <craigbe...@mac.com> Date: Thu Aug 25 21:09:01 2016 -0500 Remove VMS-specific hacks from showlex.t. I added this 15 years ago in d0c1fe9a9931bc27, but it isn't necessary for any VMS version now supported and it has recently caused the test to start failing under the test suite but not when run individually. So just get rid of it. ----------------------------------------------------------------------- Summary of changes: ext/B/t/showlex.t | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/B/t/showlex.t b/ext/B/t/showlex.t index dd5cdb7..f92ac9e 100644 --- a/ext/B/t/showlex.t +++ b/ext/B/t/showlex.t @@ -21,10 +21,8 @@ plan tests => 15; my $verbose = @ARGV; # set if ANY ARGS my $a; -my $Is_VMS = $^O eq 'VMS'; my $path = join " ", map { qq["-I$_"] } @INC; -$path = '"-I../lib" "-Iperl_root:[lib]"' if $Is_VMS; # gets too long otherwise my $is_thread = $Config{use5005threads} && $Config{use5005threads} eq 'define'; if ($is_thread) { -- Perl5 Master Repository