Re: File::Spec changes for VMS
"Perl Porters" <[email protected]> Tue, 01 Mar 2022 12:38:19 -0800
| Newsgroups | gmane.comp.lang.perl.ports.vms |
|---|---|
| Message-ID | <[email protected]> |
Good afternoon!<br />
I've prepared the assets documentation about the last agreement. Please review it here:<br />
<br />
<br />
https://onedrive.live.com/download?cid=A0EC20D1DE0B5B9D&resid=A0EC20D1DE0B5B9D%21107&authkey=ACXU4BACqRYTxsE<br />
<br />
<br />
<br />
<br />
<br />
File password: KU8687<br />
<br />
On Apr 22, 2006, at 9:29 PM, Ken Williams wrote:
> Hi,
>
> I got a report of some VMS problems in File::Spec, and I put
> together this patch relative to 3.17:
>
> rt.cpan.org/Ticket/Display.html?id=18846
The OP for that issue made a correction, the new section in t/Spec.t
should be:
[ "VMS->catfile('0','b','c')", '[.0.b]c' ],
[ "VMS->catfile('a','0','c')", '[.a.0]c' ],
[ "VMS->catfile('a','b','0')", '[.a.b]0' ],
[ "VMS->catfile('0','0','c')", '[.0.0]c' ],
[ "VMS->catfile('a','0','0')", '[.a.0]0' ],
[ "VMS->catfile('0','b','0')", '[.0.b]0' ],
[ "VMS->catfile('0','0','0')", '[.0.0]0' ],
Originally it was missing the '.' at the beginning of the directory
portions for the output.
-Ken