In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/04e82a462b85b3d6265b04aa07a405316616dc66?hp=41239ce77fcd273e18c4017d3d96a5f42e228594>

- Log -----------------------------------------------------------------
commit 04e82a462b85b3d6265b04aa07a405316616dc66
Author: Nicholas Clark <[email protected]>
Date:   Sun Oct 11 18:56:01 2009 +0100

    porting/manifest.t now tests that all files listed in MANIFEST are present.
-----------------------------------------------------------------------

Summary of changes:
 t/porting/manifest.t |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/t/porting/manifest.t b/t/porting/manifest.t
index 377f666..97d320b 100644
--- a/t/porting/manifest.t
+++ b/t/porting/manifest.t
@@ -23,6 +23,8 @@ while (<$m>) {
     next unless /\s/;   # Ignore lines without whitespace (i.e., filename only)
     my ($file, $separator) = /^(\S+)(\s+)/;
     isnt($file, undef, "Line $. doesn't start with a blank") or next;
+    # Remember, we're running from t/
+    ok(-f "../$file", "File $file exists");
     if ($separator !~ tr/\t//c) {
        # It's all tabs
        next;

--
Perl5 Master Repository

Reply via email to