This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #123554] stop checking the message
[perl5.git] / t / porting / cmp_version.t
CommitLineData
c8aeb9c6
A
1#!./perl -w
2
c8aeb9c6
A
3# Original by slaven@rezic.de, modified by jhi and matt.w.johnson@gmail.com
4#
5# Adapted from Porting/cmpVERSION.pl by Abigail
76733a60 6# Changes folded back into that by Nicholas
1b67236f
JH
7#
8# If some modules fail this, you need a version bump (_001, etc.)
9# AND you should probably also nudge the upstream maintainer for
10# example by filing a bug, with a patch attached and linking to
11# the core change.
c8aeb9c6 12
18388fdb
NC
13BEGIN {
14 @INC = '..' if -f '../TestInit.pm';
15}
7eccb5a9 16use TestInit qw(T A); # T is chdir to the top level, A makes paths absolute
c8aeb9c6 17use strict;
76733a60 18
7cadc1d0 19require 't/test.pl';
fb7d5399
NC
20my $source = find_git_or_skip('all');
21chdir $source or die "Can't chdir to $source: $!";
c8aeb9c6 22
7eccb5a9 23system "$^X Porting/cmpVERSION.pl --exclude --tap";