diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-01-14 12:40:24 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-01-14 12:40:24 +0000 |
commit | c6b468669ccdb9d00657bf19b6aedb2a9fa88ca7 (patch) | |
tree | 865521775f72efbade83527f388cbd969c626bc1 /t/io | |
parent | bf515f6a8a42412ff92eeae0775fe495bf4f65bb (diff) | |
download | perl-c6b468669ccdb9d00657bf19b6aedb2a9fa88ca7.tar.gz |
Apparently some stdios have bugs (no! don't tell it is so!)
or there is a corner of stdio that is substandardised.
p4raw-id: //depot/perl@18481
Diffstat (limited to 't/io')
-rwxr-xr-x | t/io/tell.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/io/tell.t b/t/io/tell.t index b3065d3002..9aa39e842f 100755 --- a/t/io/tell.t +++ b/t/io/tell.t @@ -136,7 +136,9 @@ if (tell($tst) == 5) { print "ok 30\n"; } else { print "not ok 30\n"; } print $tst "xxxx\n"; -if (tell($tst) == 15) { print "ok 27\n"; } else { print "not ok 27\n"; } +if (tell($tst) == 15 || + tell($tst) == 5) # unset PERLIO or PERLIO=stdio (e.g. HP-UX, Solaris) +{ print "ok 27\n"; } else { print "not ok 27\n"; } close($tst); |