summaryrefslogtreecommitdiff
path: root/t/io/tell.t
diff options
context:
space:
mode:
Diffstat (limited to 't/io/tell.t')
-rwxr-xr-xt/io/tell.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/io/tell.t b/t/io/tell.t
index afcfcb5800..8df0228c31 100755
--- a/t/io/tell.t
+++ b/t/io/tell.t
@@ -6,8 +6,11 @@ print "1..21\n";
$TST = 'tst';
+$Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'dos' or
+ $^O eq 'os2' or $^O eq 'mint' or $^O =~ /cygwin/);
+
open($TST, '../Configure') || (die "Can't open ../Configure");
-binmode $TST if $^O eq 'MSWin32';
+binmode $TST if $Is_Dosish;
if (eof(tst)) { print "not ok 1\n"; } else { print "ok 1\n"; }
$firstline = <$TST>;