I'm currently installing a version of PERL (see features at the bottom) on a
HP-server and I'm currently meeting a problem.
After performing make, I've performed make test with a view to test the building
of perl. The test is OK at more than 96%. However I obtained errors on the test
of op/misc.t. Here is a sample of the errors I got by running ./perl op/misc.t
(note that all the errors I got are similar) :
...
# fdopen from a system descriptor to a system descriptor used to close
# the former.
open STDERR, '>&=STDOUT' or die $!;
select STDOUT; $| = 1; print fileno STDOUT;
select STDERR; $| = 1; print fileno STDERR;
EXPECTED:
1
2
GOT:
stty: : Not a typewriter
stty: : Not a typewriter
1
2
not ok 48
stty: : Not a typewriter
stty: : Not a typewriter
PROG: -w
sub testme { my $a = "test"; { local $a = "new test"; print $a }}
EXPECTED:
Can't localize lexical variable $a at - line 2.
GOT:
stty: : Not a typewriter
stty: : Not a typewriter
Can't localize lexical variable $a at - line 2.
not ok 49
stty: : Not a typewriter
stty: : Not a typewriter
PROG:
package X;
sub ascalar { my $r; bless \$r }
sub DESTROY { print "destroyed\n" };
package main;
*s = ascalar X;
EXPECTED:
destroyed
GOT:
stty: : Not a typewriter
stty: : Not a typewriter
destroyed
not ok 50
stty: : Not a typewriter
stty: : Not a typewriter
...
What is strange is that the test got what it expected except the message "stty:
: Not a typewriter". I don't know how to deal with that since I'm not too
familiar with stty stuff ! Would you main to give me a help, please.
Features:
OS : HP-UX 10.20 running on server HP 9000/847
Compiler : gcc 2.8.1
Version of perl : perl-5.005.02
Migrated from rt.perl.org#1677 (status was 'resolved')
Searchable as RT1677$
The text was updated successfully, but these errors were encountered: