Silence some warnings introduced by #33507
[p5sagit/p5-mst-13.2.git] / ext / IO / t / io_tell.t
1 #!./perl
2
3 BEGIN {
4     unless(grep /blib/, @INC) {
5         chdir 't' if -d 't';
6         @INC = '../lib';
7         $tell_file = "TEST";
8     }
9     else {
10         $tell_file = "Makefile";
11     }
12 }
13
14 use Config;
15
16 BEGIN {
17     if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bIO\b/ && $^O ne 'VMS') {
18         print "1..0\n";
19         exit 0;
20     }
21 }
22
23 print "1..13\n";
24
25 use IO::File;
26
27 $tst = IO::File->new("$tell_file","r") || die("Can't open $tell_file");
28 binmode $tst; # its a nop unless it matters. Was only if ($^O eq 'MSWin32' or $^O eq 'dos');
29 if ($tst->eof) { print "not ok 1\n"; } else { print "ok 1\n"; }
30
31 $firstline = <$tst>;
32 $secondpos = tell;
33
34 $x = 0;
35 while (<$tst>) {
36     if (eof) {$x++;}
37 }
38 if ($x == 1) { print "ok 2\n"; } else { print "not ok 2\n"; }
39
40 $lastpos = tell;
41
42 unless (eof) { print "not ok 3\n"; } else { print "ok 3\n"; }
43
44 if ($tst->seek(0,0)) { print "ok 4\n"; } else { print "not ok 4\n"; }
45
46 if (eof) { print "not ok 5\n"; } else { print "ok 5\n"; }
47
48 if ($firstline eq <$tst>) { print "ok 6\n"; } else { print "not ok 6\n"; }
49
50 if ($secondpos == tell) { print "ok 7\n"; } else { print "not ok 7\n"; }
51
52 if ($tst->seek(0,1)) { print "ok 8\n"; } else { print "not ok 8\n"; }
53
54 if ($tst->eof) { print "not ok 9\n"; } else { print "ok 9\n"; }
55
56 if ($secondpos == tell) { print "ok 10\n"; } else { print "not ok 10\n"; }
57
58 if ($tst->seek(0,2)) { print "ok 11\n"; } else { print "not ok 11\n"; }
59
60 if ($lastpos == $tst->tell) { print "ok 12\n"; } else { print "not ok 12\n"; }
61
62 unless (eof) { print "not ok 13\n"; } else { print "ok 13\n"; }