Skip Menu |

This queue is for tickets about the Fortran-F90Namelist CPAN distribution.

Report information
The Basics
Id: 41688
Status: open
Priority: 0/
Queue: Fortran-F90Namelist

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.5.1
Fixed in: (no value)



Subject: pod-snippets-02 test fails
On my machine (freebsd-7.0 with perl 5.8.8) the generated pod-snippets-02 test fails: ... t/pod-snippets-02...........Can't find string terminator " HERE" anywhere before EOF at lib/Fortran/F90Namelist/Group.pm line 25. # Looks like your test exited with 255 before it could output anything. t/pod-snippets-02........... Dubious, test returned 255 (wstat 65280, 0xff00) No subtests run ... Note also that the pod-snippets-* test files are not created when using the Makefile.PL fallback. As most users still prefer using Makefile.PL over Build.PL, it is probably advisable to create these files also for them. Regards, Slaven
On Sun Dec 14 09:57:17 2008, SREZIC wrote: Show quoted text
> On my machine (freebsd-7.0 with perl 5.8.8) the generated > pod-snippets-02 test fails: > > ... > t/pod-snippets-02...........Can't find string terminator " HERE" > anywhere before EOF at lib/Fortran/F90Namelist/Group.pm line 25.
The patch to make this work is to change the line $nlgrp->parse(<<' HERE'); into $nlgrp->parse(<<'HERE'); (the leading spaces used for verbatim blocks are stripped away by Test::Pod::Snippets)