summaryrefslogtreecommitdiff
path: root/Porting/checkcfgvar.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-09-23 16:30:22 +0200
committerNicholas Clark <nick@ccl4.org>2011-09-24 09:34:04 +0200
commit6692294e17e0b71a5e4a776313e0c3ac739a3d06 (patch)
tree888b968ca55b2f4f7d71c903f86049f80d0b8e1e /Porting/checkcfgvar.pl
parente1bac1195b4fb97ca62dff9ca5031b71a69f21c1 (diff)
downloadperl-6692294e17e0b71a5e4a776313e0c3ac739a3d06.tar.gz
Add t/porting/checkcfgvar.t to run Porting/checkcfgvar.pl as a test.
Add TAP generation and a --tap option to Porting/checkcfgvar.pl. In checkcfgvar.t, document its purpose, and the likely way to fix the problems that it has flagged up. This is a prototype before adding similar instructions to the other t/porting tests.
Diffstat (limited to 'Porting/checkcfgvar.pl')
-rwxr-xr-xPorting/checkcfgvar.pl24
1 files changed, 20 insertions, 4 deletions
diff --git a/Porting/checkcfgvar.pl b/Porting/checkcfgvar.pl
index 9807cdf111..e6a819fbeb 100755
--- a/Porting/checkcfgvar.pl
+++ b/Porting/checkcfgvar.pl
@@ -24,11 +24,14 @@ use Getopt::Long;
my $opt_l = 0;
my $opt_r = 0;
my $default;
+my $tap = 0;
+my $test;
GetOptions (
"help|?" => sub { usage (0); },
"l|list!" => \$opt_l,
"regen" => \$opt_r,
"default=s" => \$default,
+ "tap" => \$tap,
) or usage (1);
require 'regen/regen_lib.pl' if $opt_r;
@@ -84,6 +87,8 @@ my %MANIFEST;
close $fh;
}
+printf "1..%d\n", 2 * @CFG if $tap;
+
for my $cfg (sort @CFG) {
unless (exists $MANIFEST{$cfg}) {
print STDERR "[skipping not-expected '$cfg']\n";
@@ -127,10 +132,16 @@ for my $cfg (sort @CFG) {
}
close $fh;
+ ++$test;
my $missing;
- if ($cfg eq 'configure.com'
- || join("", @{$lines[1]}) eq join("", sort @{$lines[1]})) {
- # All is good with the world.
+ if ($cfg eq 'configure.com') {
+ print "ok $test # skip $cfg doesn't need to be sorted\n"
+ if $tap;
+ } elsif (join("", @{$lines[1]}) eq join("", sort @{$lines[1]})) {
+ print "ok $test - $cfg sorted\n"
+ if $tap;
+ } elsif ($tap) {
+ print "not ok $test - $cfg is not sorted\n";
} elsif ($opt_r || $opt_l) {
# A reference to an empty array is true, hence this flags the
# file for later attention by --regen and --list, even if
@@ -145,8 +156,11 @@ for my $cfg (sort @CFG) {
push @$missing, $v unless exists $cfg{$v};
}
+ ++$test;
if ($missing) {
- if ($opt_l) {
+ if ($tap) {
+ print "not ok $test - $cfg missing keys @$missing\n";
+ } elsif ($opt_l) {
# print the name once, however many problems
print "$cfg\n";
} elsif ($opt_r && $cfg ne 'configure.com') {
@@ -164,5 +178,7 @@ for my $cfg (sort @CFG) {
} else {
print "$cfg: missing '$_'\n" foreach @$missing;
}
+ } elsif ($tap) {
+ print "ok $test - $cfg has no missing keys\n";
}
}