1
0
Fork 0
mirror of https://github.com/perlbot/perlbuut synced 2025-06-07 18:45:42 -04:00

Do not run 5.5 with warnings enabled

This commit is contained in:
Ryan Voots 2017-04-04 17:11:17 -04:00
parent f3c423afea
commit 923b2f270f

View file

@ -87,6 +87,7 @@ sub command {
my $torun = $version eq '' ? 'blead' : $version;
next if $version eq 'all';
next if $version eq '4';
next if $version eq '5.5' && $command =~ /w/; # no warnings in 5.5
push @outs, "[[$torun]]", $self->do_eval('perl'.$version, $code);
}