On Tue, Dec 21, 2010 at 12:14:17AM +0000, Nuno 'smash' Carvalho wrote: > Here is a first attempt to write the filenames.t test file. Some > tests discussed in the list were added, not all I think. Any comments, > suggestions, etc. are welcome. A couple of tests fail because of file > names with more than one . (dot) in the MANIFEST. I see one issue with the DOS device filename checks: + foreach (@dont) { + if ($before =~ m/$_\./i) { + fail("found $_ before the dot: $filename"); + return; + } + } A filename "fooprn.pm" is acceptable, but this code will reject it. A filename "foo/prn.pm" is not acceptable. TonyThread Previous | Thread Next