This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Porting/cmpVERSION.pl - Show $VERSION of failing modules
authorSteve Hay <steve.m.hay@googlemail.com>
Sat, 31 Jan 2015 19:55:16 +0000 (19:55 +0000)
committerSteve Hay <steve.m.hay@googlemail.com>
Sat, 31 Jan 2015 19:55:16 +0000 (19:55 +0000)
These are the $VERSIONs of modules with differing contents between two
versions of Perl. This $pm_version should have been bumped to differ from
$orig_pm_version.

Porting/cmpVERSION.pl

index 37017cf..7964b9b 100755 (executable)
@@ -189,11 +189,11 @@ foreach my $pm_file (sort keys %module_diffs) {
                and grep $pm_version eq $_, @{$skip_versions{$pm_file}}) {
                print "ok $count - SKIP $pm_file version $pm_version\n";
            } else {
-               print "not ok $count - $pm_file\n";
+               print "not ok $count - $pm_file version $pm_version\n";
            }
        } else {
            push @diff, @{$module_diffs{$pm_file}};
-           print "$pm_file\n";
+           print "$pm_file version $pm_version\n";
        }
     }
 }