The script 03examples.t is failing at test 1 because the includes seem
to be set wrong for VMS.
--- ext/compress/zlib/t/03examples_t.blead Sun Jul 31 22:54:06 2005
+++ ext/compress/zlib/t/03examples.t Sun Jul 31 22:54:12 2005
@@ -42,7 +42,7 @@
my $Inc = '' ;
if ($^O eq 'VMS') {
- $Inc = '-"I[.blib.lib]" -"I[.blib.arch]"';
+ $Inc = '-"I[-.lib]" -"I[-.arch]"';
}
elsif ($^O eq 'MSWin32') {
foreach (@INC)
This gets the script passing up to test 10 which causes the subsequent
tests to fail.
DB<5> x `$Perl $Inc ${examples}/gzstream <$file1 >$file2 2>$stderr`
The error captured in the file $stderr is:
EAGLE> type err.out
Cannot open stdout: invalid argument
%C-F-EINVAL, invalid argument
The value for stdout should have been the filename hello2.gz, and there
should be nothing illegal about that. I will need to chase that down
later, if someone else does not find the fix before this.
-John
[EMAIL PROTECTED]
Personal Opinion Only