Subject: | env.opts.t is an invalid filename |
At least on VMS it is, where it halted the entire test suite in its tracks when it came into blead
with:
$ perl TEST ../cpan/Test-Harness/t/compat/env.opts.t
Can't read ../cpan/test-harness/t/compat/env.opts.t.
%RMS-F-SYN, file specification syntax error
But after renaming to env_opts.t and removing this totally unnecessary skippage:
--- t/compat/env_opts.t;-0 2012-07-01 19:03:12 -0500
+++ t/compat/env_opts.t 2012-07-01 19:04:05 -0500
@@ -2,9 +2,7 @@
use strict;
use Test::More (
- $^O eq 'VMS'
- ? ( skip_all => 'VMS' )
- : ( tests => 12 )
+ tests => 12
);
use Test::Harness;
[end]
all is well:
$ perl TEST ../cpan/Test-Harness/t/compat/env_opts.t
t/../cpan/test-harness/t/compat/env_opts ... ok
All tests successful.
u=63.22 s=0.00 cu=0.00 cs=0.00 scripts=1 tests=12
at least for the first three tests, which are the only ones run in core.