|
[text/plain 736b]
Hello, and thanks again for working on Spreadsheet::ParseExcel.
I've a quick fix to allow the distribution to pass it's tests on VMS.
Makefile.PL has the following line:
test => {TESTS => 't/*.t t/examples/*t'}
The "t/examples" directory does not exist in the distribution and on
VMS I get:
Cannot determine source for t/examples/*t
at /perl_root/lib/Test/Harness.pm line 170
%SYSTEM-F-ABORT, abort
%MMK-F-ERRUPD, error status %X0000002C occurred when updating target
TEST_DYNAMIC
The fix is to change the line in Makefile.PL to:
test => {TESTS => 't/*.t'}
(or just remove it), I also noticed there are some files t/exmaples/*.t
that are commented out in the MANIFEST.
Cheers,
Peter (Stig) Edwards
|