Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

write a test for Porting/README coverage #12843

Closed
p5pRT opened this issue Mar 10, 2013 · 13 comments
Closed

write a test for Porting/README coverage #12843

p5pRT opened this issue Mar 10, 2013 · 13 comments
Labels

Comments

@p5pRT
Copy link

p5pRT commented Mar 10, 2013

Migrated from rt.perl.org#117115 (status was 'resolved')

Searchable as RT117115$

@p5pRT
Copy link
Author

p5pRT commented Mar 10, 2013

From @rjbs

The perl.git Porting directory now has a README file giving a summary of what's
what in the perl "stuff for doing perl dev work" directory.

Add a test to t/Porting that asserts​:

  a) every file in Porting/README exists in Porting
  b) every file in Porting exists in Porting/README

--
rjbs

@p5pRT
Copy link
Author

p5pRT commented Mar 10, 2013

From dennis.kaarsemaker@booking.com

On zo, 2013-03-10 at 11​:36 -0700, Ricardo SIGNES wrote​:

# New Ticket Created by Ricardo SIGNES
# Please include the string​: [perl #117115]
# in the subject line of all future correspondence about this issue.
# <URL​: https://rt-archive.perl.org/perl5/Ticket/Display.html?id=117115 >

The perl.git Porting directory now has a README file giving a summary of what's
what in the perl "stuff for doing perl dev work" directory.

Add a test to t/Porting that asserts​:

a) every file in Porting/README exists in Porting
b) every file in Porting exists in Porting/README

Attached patch implements a test does this, but fails as (b) is
currently untrue. It also ignores the in-progress perldelta.

porting/readme.t .. # Failed test 63 - sync-with-cpan is mentioned in Porting/README.pod at porting/readme.t line 30
porting/readme.t .. 1/? # Failed test 70 - time exists in Porting/ at porting/readme.t line 34
porting/readme.t .. Failed 2/70 subtests

--
Dennis Kaarsemaker, Systems Architect
Booking.com
Herengracht 597, 1017 CE Amsterdam
Tel external +31 (0) 20 715 3409
Tel internal (7207) 3409

@p5pRT
Copy link
Author

p5pRT commented Mar 10, 2013

From dennis.kaarsemaker@booking.com

0001-t-porting-readme.t-Check-Porting-README.pod-consiste.patch
From ae9a340dc2f2bac96bfaad47c28d5af57fa6dc82 Mon Sep 17 00:00:00 2001
From: Dennis Kaarsemaker <dennis@kaarsemaker.net>
Date: Mon, 11 Mar 2013 00:31:44 +0100
Subject: [PATCH] t/porting/readme.t: Check Porting/README.pod consistency

All files in Porting/ should be mentioned in its README.pod and vice
versa.
---
 t/porting/readme.t | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 t/porting/readme.t

diff --git a/t/porting/readme.t b/t/porting/readme.t
new file mode 100644
index 0000000..8949f67
--- /dev/null
+++ b/t/porting/readme.t
@@ -0,0 +1,35 @@
+#!./perl -w
+#
+# Check whether all files mentioned in Porting/README.pod exist in Porting and
+# vice versa.
+
+BEGIN {
+    chdir 't' if -d 't';
+    @INC = qw(. ../lib);
+    require 'test.pl';
+}
+
+use strict;
+use Data::Dumper;
+plan('no_plan');
+
+my %files_in_pod;
+
+open(my $fh, '<', '../Porting/README.pod') or die("Can't open Porting/README.pod: $!");
+
+while(<$fh>) {
+    next unless $_ =~ /^=head/;
+    my @matches = $_ =~ m/F<([^>]+)>/g;
+    for my $file (@matches) {
+        $files_in_pod{$file} = 1;
+    }
+}
+for my $file (glob("../Porting/*")) {
+    $file =~ s!^../Porting/!!;
+    next if $file =~ /^(perl[0-9]+delta|README)\.pod$/;
+    ok(exists($files_in_pod{$file}), "$file is mentioned in Porting/README.pod");
+    delete $files_in_pod{$file};
+}
+for my $file (keys %files_in_pod) {
+    ok(0, "$file exists in Porting/");
+}
-- 
1.8.1.5.4.g84d0fe6

@p5pRT
Copy link
Author

p5pRT commented Mar 10, 2013

The RT System itself - Status changed from 'new' to 'open'

@p5pRT
Copy link
Author

p5pRT commented Mar 11, 2013

From @Tux

On Mon, 11 Mar 2013 00​:36​:12 +0100, Dennis Kaarsemaker
<dennis.kaarsemaker@​booking.com> wrote​:

On zo, 2013-03-10 at 11​:36 -0700, Ricardo SIGNES wrote​:

# New Ticket Created by Ricardo SIGNES
# Please include the string​: [perl #117115]
# in the subject line of all future correspondence about this issue.
# <URL​: https://rt-archive.perl.org/perl5/Ticket/Display.html?id=117115 >

The perl.git Porting directory now has a README file giving a summary of what's
what in the perl "stuff for doing perl dev work" directory.

Add a test to t/Porting that asserts​:

a) every file in Porting/README exists in Porting
b) every file in Porting exists in Porting/README

Attached patch implements a test does this, but fails as (b) is
currently untrue. It also ignores the in-progress perldelta.

porting/readme.t .. # Failed test 63 - sync-with-cpan is mentioned in Porting/README.pod at porting/readme.t line 30
porting/readme.t .. 1/? # Failed test 70 - time exists in Porting/ at porting/readme.t line 34
porting/readme.t .. Failed 2/70 subtests

Why plan('no_plan'); instead of done_testing (); ? (just curious)

--
H.Merijn Brand http​://tux.nl Perl Monger http​://amsterdam.pm.org/
using perl5.00307 .. 5.17 porting perl5 on HP-UX, AIX, and openSUSE
http​://mirrors.develooper.com/hpux/ http​://www.test-smoke.org/
http​://qa.perl.org http​://www.goldmark.org/jeff/stupid-disclaimers/

@p5pRT
Copy link
Author

p5pRT commented Mar 11, 2013

From dennis.kaarsemaker@booking.com

On Mon, 2013-03-11 at 08​:17 +0100, H.Merijn Brand wrote​:

On Mon, 11 Mar 2013 00​:36​:12 +0100, Dennis Kaarsemaker
<dennis.kaarsemaker@​booking.com> wrote​:

On zo, 2013-03-10 at 11​:36 -0700, Ricardo SIGNES wrote​:

# New Ticket Created by Ricardo SIGNES
# Please include the string​: [perl #117115]
# in the subject line of all future correspondence about this issue.
# <URL​: https://rt-archive.perl.org/perl5/Ticket/Display.html?id=117115 >

The perl.git Porting directory now has a README file giving a summary of what's
what in the perl "stuff for doing perl dev work" directory.

Add a test to t/Porting that asserts​:

a) every file in Porting/README exists in Porting
b) every file in Porting exists in Porting/README

Attached patch implements a test does this, but fails as (b) is
currently untrue. It also ignores the in-progress perldelta.

porting/readme.t .. # Failed test 63 - sync-with-cpan is mentioned in Porting/README.pod at porting/readme.t line 30
porting/readme.t .. 1/? # Failed test 70 - time exists in Porting/ at porting/readme.t line 34
porting/readme.t .. Failed 2/70 subtests

Why plan('no_plan'); instead of done_testing (); ? (just curious)

Copied from another test in t/porting/. I never wrote tests without a
plan before, so I simply grabbed the first thing I found that worked :)

--
Dennis Kaarsemaker, Systems Architect
Booking.com
Herengracht 597, 1017 CE Amsterdam
Tel external +31 (0) 20 715 3409
Tel internal (7207) 3409

@p5pRT
Copy link
Author

p5pRT commented Jun 27, 2013

From gottreu@gmail.com

This is a bug report for perl from gottreu@​gmail.com,
generated with the help of perlbug 1.39 running under perl 5.19.2.


I modified Dennis Kaarsemaker's patch which adds t/porting/readme.t
slightly.

In addition to Ricardo's two assertions that should be tested​:
a) every file in Porting/README exists in Porting
b) every file in Porting exists in Porting/README

I added c) files listed in Porting/README are in alphabetical order.

Attached are patches for readme.t and fixes to README.pod so that
readme.t passes.



Flags​:
  category=core
  severity=low


Site configuration information for perl 5.19.2​:

Configured by gottreu at Wed Jun 26 09​:47​:33 CDT 2013.

Summary of my perl5 (revision 5 version 19 subversion 2) configuration​:
  Derived from​: ec79994
  Platform​:
  osname=linux, osvers=3.2.0-4-amd64, archname=x86_64-linux
  uname='linux frylock 3.2.0-4-amd64 #1 smp debian 3.2.39-2 x86_64
gnulinux '
  config_args='-des -Dusedevel'
  hint=previous, useposix=true, d_sigaction=define
  useithreads=undef, usemultiplicity=undef
  useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
  use64bitint=define, use64bitall=define, uselongdouble=undef
  usemymalloc=n, bincompat5005=undef
  Compiler​:
  cc='cc', ccflags ='-fno-strict-aliasing -pipe -fstack-protector
-I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64',
  optimize='-O2',
  cppflags='-fno-strict-aliasing -pipe -fstack-protector
-I/usr/local/include -fno-strict-aliasing -pipe -fstack-protector
-I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
  ccversion='', gccversion='4.7.2', gccosandvers=''
  intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
  d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
  ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t',
lseeksize=8
  alignbytes=8, prototype=define
  Linker and Libraries​:
  ld='cc', ldflags =' -fstack-protector -L/usr/local/lib'
  libpth=/usr/local/lib /lib/x86_64-linux-gnu /lib/../lib
/usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib /usr/lib
  libs=-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc -lgdbm_compat
  perllibs=-lnsl -ldl -lm -lcrypt -lutil -lc
  libc=, so=so, useshrplib=false, libperl=libperl.a
  gnulibc_version='2.13'
  Dynamic Linking​:
  dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E'
  cccdlflags='-fPIC', lddlflags='-shared -O2 -L/usr/local/lib
-fstack-protector'

Locally applied patches​:


@​INC for perl 5.19.2​:
  lib
  /usr/local/lib/perl5/site_perl/5.19.2/x86_64-linux
  /usr/local/lib/perl5/site_perl/5.19.2
  /usr/local/lib/perl5/5.19.2/x86_64-linux
  /usr/local/lib/perl5/5.19.2
  /usr/local/lib/perl5/site_perl
  .


Environment for perl 5.19.2​:
  HOME=/home/gottreu
  LANG=en_US.UTF-8
  LANGUAGE (unset)
  LD_LIBRARY_PATH (unset)
  LOGDIR (unset)

PATH=/home/gottreu/bin​:/usr/local/bin​:/usr/bin​:/bin​:/usr/local/games​:/usr/games
  PERL_BADLANG (unset)
  SHELL=/bin/bash

@p5pRT
Copy link
Author

p5pRT commented Jun 27, 2013

From gottreu@gmail.com

0001-t-porting-readme.t-Check-Porting-README.pod-consiste.patch
From 3834d52b9860b869ee05d6a6676b35117c439afe Mon Sep 17 00:00:00 2001
From: Brian Gottreu <gottreu@gmail.com>
Date: Wed, 26 Jun 2013 19:39:25 -0500
Subject: [PATCH 1/2] t/porting/readme.t: Check Porting/README.pod consistency
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="------------1.7.10.4"

This is a multi-part message in MIME format.
--------------1.7.10.4
Content-Type: text/plain; charset=UTF-8; format=fixed
Content-Transfer-Encoding: 8bit


This is a slightly expanded (or bloated) version of the patch
Dennis Kaarsemaker <dennis@kaarsemaker.net> submitted.
---
 t/porting/readme.t |   75 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 75 insertions(+)
 create mode 100644 t/porting/readme.t


--------------1.7.10.4
Content-Type: text/x-patch; name="0001-t-porting-readme.t-Check-Porting-README.pod-consiste.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment; filename="0001-t-porting-readme.t-Check-Porting-README.pod-consiste.patch"

diff --git a/t/porting/readme.t b/t/porting/readme.t
new file mode 100644
index 0000000..505e1e3
--- /dev/null
+++ b/t/porting/readme.t
@@ -0,0 +1,75 @@
+#!./perl -w
+#
+# Check whether all files mentioned in Porting/README.pod exist in Porting and
+# vice versa.
+
+BEGIN {
+    @INC = '..' if -f '../TestInit.pm';
+}
+
+use TestInit qw(T); # T is chdir to the top level
+use strict;
+use warnings;
+require 't/test.pl';
+
+open(my $fh, '<', 'Porting/README.pod') or die("Can't open Porting/README.pod: $!");
+
+my @porting_files = glob("Porting/*");
+# It seems that dying here is nicer than having several dozen failing tests
+# later.  But that assumes one will see the message from die.
+die "Can't get contents of Porting/ directory.\n" unless @porting_files > 1;
+
+my (@current_order, @sorted_order, %files_in_pod);
+while(<$fh>) {
+    next unless $_ =~ /^=head/;
+    my @matches = $_ =~ m/F<([^>]+)>/g;
+    for my $file (@matches) {
+        $files_in_pod{$file} = 1;
+        push @current_order, $file;
+    }
+}
+
+for my $file (@porting_files) {
+    $file =~ s!^Porting/!!;
+    next if $file =~ /^perl[0-9]+delta\.pod$/;
+    ok(exists($files_in_pod{$file}), "$file is mentioned in Porting/README.pod");
+    delete $files_in_pod{$file};
+}
+for my $file (keys %files_in_pod) {
+    fail("$file exists in Porting/");
+}
+
+# Check if the entries in the README are in some sort of order.
+eval {
+    require Unicode::Collate;
+    my $Collator = Unicode::Collate->new();
+    @sorted_order = $Collator->sort(@current_order);
+};
+
+if(@sorted_order) {
+    ok(eq_array(\@current_order, \@sorted_order), "Files are referenced in order") or
+        print_right_order();
+}
+else {
+    note('Unicode collation did not work.  Not checking order of entries.');
+}
+
+# Frankly this is a bit much for a porting test, but it exists now.
+sub print_right_order {
+    my $max = 0;
+    for(@current_order) {
+        my $l = length $_;
+        $max = $l if $l > $max;
+    }
+    $max = 36 if $max > 36;
+    note(sprintf " N   %-${max}s %-${max}s\n", "Correct", "Current");
+    for(0..$#current_order) {
+        my $wrong = $sorted_order[$_] eq $current_order[$_] ? '' : 'X';
+        my $line = sprintf "%2d %1s %-${max}s %-${max}s\n",
+            $_, $wrong, $sorted_order[$_], $current_order[$_];
+        $line =~ s{ ((?:  ){2,})}{" " . ". " x (length($1)/2)}e if $_&1;
+        note($line);
+    }
+}
+
+done_testing();

--------------1.7.10.4--


@p5pRT
Copy link
Author

p5pRT commented Jun 27, 2013

From gottreu@gmail.com

0002-Fix-Porting-README.pod-so-it-passes-its-new-test.patch
From 15bb1964c909ac25a19cda7c7f39b22f96da81d1 Mon Sep 17 00:00:00 2001
From: Brian Gottreu <gottreu@gmail.com>
Date: Wed, 26 Jun 2013 19:44:34 -0500
Subject: [PATCH 2/2] Fix Porting/README.pod so it passes its new test.
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="------------1.7.10.4"

This is a multi-part message in MIME format.
--------------1.7.10.4
Content-Type: text/plain; charset=UTF-8; format=fixed
Content-Transfer-Encoding: 8bit


Added entries for sync-with-cpan and README.pod itself.  Rearranged
entries to be sorted consistently.
---
 Porting/README.pod |   89 ++++++++++++++++++++++++++++------------------------
 1 file changed, 48 insertions(+), 41 deletions(-)


--------------1.7.10.4
Content-Type: text/x-patch; name="0002-Fix-Porting-README.pod-so-it-passes-its-new-test.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment; filename="0002-Fix-Porting-README.pod-so-it-passes-its-new-test.patch"

diff --git a/Porting/README.pod b/Porting/README.pod
index 695e7ed..e77c80d 100644
--- a/Porting/README.pod
+++ b/Porting/README.pod
@@ -16,7 +16,7 @@ text.
 Program to prepare dual-life distributions for insertion into the Perl 5
 F<lib/> and F<t/> directories.  Now thought to be largely superseded.
 
-=head2 F<bisect-example.sh>, F<bisect-runner.pl> and F<bisect.pl>
+=head2 F<bisect-example.sh>, F<bisect.pl> and F<bisect-runner.pl>
 
 Use C<git bisect> to pinpoint changes.
 
@@ -30,23 +30,14 @@ number in various files within the perl source.
 Performs pathname portability checks, including whether there are naming
 conflicts when names are truncated to the DOSish, case-ignoring 8.3 format.
 
-=head2 F<checkAUTHORS.pl>
-
-Used by F<t/porting/authors.t> to ensure the F<AUTHORS> list is up to date.
-
-=head2 F<checkURL.pl>
-
-Checks that all the URLs in the Perl source are valid.
-
-=head2 F<checkVERSION.pl>
-
-Used by F<t/porting/cmp_version.t> to ensure changed modules have had their
-versions updated.
-
 =head2 F<checkansi.pl>
 
 Check source code for ANSI-C violations.
 
+=head2 F<checkAUTHORS.pl>
+
+Used by F<t/porting/authors.t> to ensure the F<AUTHORS> list is up to date.
+
 =head2 F<checkcfgvar.pl>
 
 Check that the various F<config.sh>-clones have (at least) all the same
@@ -69,6 +60,15 @@ F<MANIFEST>).
 Check if POD files contain non-ASCII without specifying
 encoding. Run it as: C<perl Porting/checkpodencoding.pl>.
 
+=head2 F<checkURL.pl>
+
+Checks that all the URLs in the Perl source are valid.
+
+=head2 F<checkVERSION.pl>
+
+Used by F<t/porting/cmp_version.t> to ensure changed modules have had their
+versions updated.
+
 =head2 F<cherrymaint>
 
 Command line tool to update cherrymaint; a tool for selecting commits from 
@@ -114,16 +114,16 @@ same version than the corresponding module on CPAN.
 Prints a table of differences between two Perl versions with respect to
 modules included in the distribution.
 
-=head2 F<corelist.pl>
-
-Generates info for Module::CoreList from this perl tree.
-
 =head2 F<corelist-perldelta.pl>
 
 Generates a list of the module changes for the Perl you are currently
 building.  Also generates a diff between the corelist sections of two
 F<perldelta*> files.
 
+=head2 F<corelist.pl>
+
+Generates info for Module::CoreList from this perl tree.
+
 =head2 F<epigraphs.pod>
 
 List of Perl release epigraphs.
@@ -146,13 +146,6 @@ Expand C macros using the C preprocessor.
 This script finds reentrant variants of functions used in an executable and
 shared objects.
 
-=head2 F<GitUtils.pm>
-
-This script contains the subroutine to generate a F<.patch file> for a
-committish (the SHA1 checksum of a commit, a number made of 40 hexadecimal
-digits which acts the internal unique identifier for this commit
-(lilypond.org).  Related file: F<make_dot_patch.pl>
-
 =head2 F<git-deltatool>
 
 This script, a rough draft, aids in generating a perldelta file
@@ -167,6 +160,13 @@ id.
 
 This script creates a tag for every p4raw-id.
 
+=head2 F<GitUtils.pm>
+
+This script contains the subroutine to generate a F<.patch file> for a
+committish (the SHA1 checksum of a commit, a number made of 40 hexadecimal
+digits which acts the internal unique identifier for this commit
+(lilypond.org).  Related file: F<make_dot_patch.pl>
+
 =head2 F<Glossary>
 
 This file is built by F<metaconfig>. This file contains a description of all
@@ -201,31 +201,31 @@ F<Maintainers>, F<Maintainers.pm>
 A package to search and show information about which core files/modules are
 associated with maintainers.  Related files: F<Maintainers>, F<Maintainers.pl>
 
-=head2 F<make-rmg-checklist>
-
-This script creates a release checklist as a simple HTML document.
-
 =head2 F<make_dot_patch.pl>
 
 Generate a F<.patch> file to STDOUT for a commit ID specified on the
 command-line.
 
+=head2 F<makemeta>
+
+This script creates F<META.yml> and F<META.json> files.
+
 =head2 F<make_modlib_cpan.pl>
 
 This script generates the list of registered CPAN sites in F<perlmodlib.PL>.
 
-=head2 F<make_snapshot.pl>
+=head2 F<makerel>
 
-This script is a quick and dirty snapshot generator for the perl5.git.perl.org
-web page to use to generate the snapshot files. 
+This script builds a Perl release tarball.
 
-=head2 F<makemeta>
+=head2 F<make-rmg-checklist>
 
-This script creates F<META.yml> and F<META.json> files.
+This script creates a release checklist as a simple HTML document.
 
-=head2 F<makerel>
+=head2 F<make_snapshot.pl>
 
-This script builds a Perl release tarball.
+This script is a quick and dirty snapshot generator for the perl5.git.perl.org
+web page to use to generate the snapshot files. 
 
 =head2 F<manicheck>
 
@@ -279,6 +279,13 @@ Pumpkin - Notes on handling the Perl Patch Pumpkin And Porting Perl.
 Many of these are out of date or superseded by other documents in 
 this directory.
 
+=head2 F<README.pod>
+
+This file.  An exhaustive list of the contents of the F<Porting/>
+directory along with a description of each file.
+The test F<t/porting/readme.t> ensures that this lists every file
+and that every file is listed.
+
 =head2 F<README.y2038>
 
 The y2038 implementation for perl. This is an implementation of POSIX time.h
@@ -312,6 +319,10 @@ This is a script for sorting the warning and error messages in
 F<perldiag.pod>.  POD formatting, printf-style escapes, non-letter characters,
 and case are ignored, as explained in L<perldiag>.
 
+=head2 F<sync-with-cpan>
+
+Script to help out with syncing cpan distros.
+
 =head2 F<testall.atom>
 
 Test suite profiling on Tru 64.
@@ -321,10 +332,6 @@ Test suite profiling on Tru 64.
 Script for cleaning out the "known noise" from Third Degree reports: either
 noise caused by F<libc> itself, or F<Perl_yyparse> leaks.
 
-=head2 F<time>
-
-A helper tool for perl's 2038 support. See F<Porting/README.y2038> for details.
-
 =head2 F<timecheck2.c>
 
 A little program to test the limits of your system's time functions. See
@@ -340,7 +347,7 @@ This is a list of wishes for Perl. The most up-to-date version of this file is
 at L<http://perl5.git.perl.org/perl.git/blob_plain/HEAD:/Porting/todo.pod>.
 The tasks we think are smaller or easier are listed first.  Anyone is welcome
 to work on any of these, but it's a good idea to first contact
-F<perl5-porters@perl.org> to avoid duplication of effort, and to learn from
+I<perl5-porters@perl.org> to avoid duplication of effort, and to learn from
 any previous attempts.
 
 =head2 F<valgrindpp.pl>

--------------1.7.10.4--


@p5pRT
Copy link
Author

p5pRT commented Jun 27, 2013

From gottreu@gmail.com

And here's a patch to MANIFEST to include t/porting/readme.t.

@p5pRT
Copy link
Author

p5pRT commented Jun 27, 2013

From gottreu@gmail.com

0001-MANIFEST-add-t-porting-readme.t.patch
From 8504db9a91fbfa54c6a03fc4bdccc2b4ace9fa32 Mon Sep 17 00:00:00 2001
From: Brian Gottreu <gottreu@gmail.com>
Date: Wed, 26 Jun 2013 22:11:17 -0500
Subject: [PATCH] MANIFEST: add t/porting/readme.t

---
 MANIFEST |    1 +
 1 file changed, 1 insertion(+)

diff --git a/MANIFEST b/MANIFEST
index c4ff4f1..63274db 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -5279,6 +5279,7 @@ t/porting/pending-author.t	Check if any pending commit would break tests
 t/porting/perlfunc.t		Test that Functions_pm.PL can parse perlfunc.pod
 t/porting/podcheck.t		Test the POD of shipped modules is well formed
 t/porting/pod_rules.t		Check that various pod lists are consistent
+t/porting/readme.t		Check that all files in Porting/ are mentioned in Porting/README.pod
 t/porting/regen.t		Check that regen.pl doesn't need running
 t/porting/test_bootstrap.t	Test that the instructions for test bootstrapping aren't accidentally overlooked.
 t/porting/utils.t		Check that utility scripts still compile
-- 
1.7.10.4

@p5pRT
Copy link
Author

p5pRT commented Jun 27, 2013

From @cpansprout

On Wed Jun 26 20​:14​:55 2013, gottreu wrote​:

And here's a patch to MANIFEST to include t/porting/readme.t.

Thank you. All three applied as​:

d4345e3
9bd3028
395d3e0

--

Father Chrysostomos

@p5pRT
Copy link
Author

p5pRT commented Jun 27, 2013

@cpansprout - Status changed from 'open' to 'resolved'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant