summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-01-14 12:40:24 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-01-14 12:40:24 +0000
commitc6b468669ccdb9d00657bf19b6aedb2a9fa88ca7 (patch)
tree865521775f72efbade83527f388cbd969c626bc1 /t/io
parentbf515f6a8a42412ff92eeae0775fe495bf4f65bb (diff)
downloadperl-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-xt/io/tell.t4
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);