On Wed, Dec 01, 2004 at 08:31:55AM -0600, Craig A. Berry wrote:
> At 2:25 PM +0000 12/1/04, Nicholas Clark wrote:
> >On Wed, Dec 01, 2004 at 07:24:45AM -0600, Craig A. Berry wrote:
> >> This does for vms/descrip_mms.template what the Unix build does for the
> >> scripts in utils and pod, which is run them with ../lib in @INC so they
> >> can locate Config_heavy.pl when it gets loaded at run time.
> >
> >With this does VMS now build once more? Or did I inadvertently cause
> >further problems?
>
> Yes, it does build. I'm now seeing this:
>
> lib/Config................................FAILED at test 89 possibly due
> to extra output
>
> which I will look into real soon.
ok 87 - config_var d_bork is UNKNOWN
ok 88 - 3 lines found
ok 89 - 3 lines found
The test in question is
is(scalar split(/;\n/, $out6), 3, "3 lines found");
which is checking the output from
Config::config_vars(':PERL_API_.*'); # regex, non-tagged multi-line answer
which (on Unix at least) is these 3 lines:
$ ./perl -Ilib -V:PERL_API_.*
PERL_API_REVISION='5';
PERL_API_SUBVERSION='1';
PERL_API_VERSION='9';
I'm not sure if that gives any clues.
Nicholas Clark