Can't open perl script "'-I../lib'": No such file or directory)
p4raw-id: //depot/perl@14436
my $cq = (($^O eq 'MSWin32'
|| $^O eq 'NetWare'
|| $^O eq 'VMS') ? '"'
- : "'");
+ : "");
my @params = ( "${cq}-I../lib$cq", "${cq}-MPod::Usage$cq", '-e' );
my $prg = qq[${cq}pod2usage({ $args })$cq];
my @cmd = ( $^X, @params, $prg );
+ print "# cmd = @cmd\n";
+
is( system( @cmd ) >> 8, $exit, 'Exit status of pod2usage()' );
}