X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fio%2Ftell.t;h=416b869ea6fb0a86877365ed6ba84ca35e992249;hb=71937ab1ca566218dd0a5f26d4e6af562776521d;hp=560836d5e0d47181c7f2b359bd79749f13b401dd;hpb=d26ab924bbea5dd5379307deb59c11af3692350b;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/io/tell.t b/t/io/tell.t index 560836d..416b869 100755 --- a/t/io/tell.t +++ b/t/io/tell.t @@ -2,14 +2,19 @@ # $RCSfile: tell.t,v $$Revision$$Date$ +BEGIN { + chdir 't' if -d 't'; + @INC = '../lib'; +} + print "1..23\n"; $TST = 'tst'; -$Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'dos' or +$Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'NetWare' or $^O eq 'dos' or $^O eq 'os2' or $^O eq 'mint' or $^O eq 'cygwin'); -open($TST, '../Configure') || (die "Can't open ../Configure"); +open($TST, 'harness') || (die "Can't open harness"); binmode $TST if $Is_Dosish; if (eof(tst)) { print "not ok 1\n"; } else { print "ok 1\n"; } @@ -49,8 +54,8 @@ unless (eof) { print "not ok 13\n"; } else { print "ok 13\n"; } if ($. == 0) { print "not ok 14\n"; } else { print "ok 14\n"; } $curline = $.; -open(other, '../Configure') || (die "Can't open ../Configure"); -binmode other if $^O eq 'MSWin32'; +open(other, 'harness') || (die "Can't open harness: $!"); +binmode other if (($^O eq 'MSWin32') || ($^O eq 'NetWare')); { local($.);