[shell changes from patch from perl5.003_12 to perl5.003_13]
[p5sagit/p5-mst-13.2.git] / t / lib / io_tell.t
CommitLineData
61f2b451 1#!./perl
2
3# $RCSfile: tell.t,v $$Revision: 1.1 $$Date: 1996/05/01 10:52:47 $
4
5BEGIN {
6 chdir 't' if -d 't';
7 @INC = '../lib' if -d '../lib';
8 require Config; import Config;
9 if ($Config{'extensions'} !~ /\bIO\b/ && !($^O eq 'VMS')) {
10 print "1..0\n";
11 exit 0;
12 }
13}
14
15print "1..13\n";
16
17use IO::File;
18
19$tst = IO::File->new("TEST","r") || die("Can't open TEST");
20
21if ($tst->eof) { print "not ok 1\n"; } else { print "ok 1\n"; }
22
23$firstline = <$tst>;
24$secondpos = tell;
25
26$x = 0;
27while (<$tst>) {
28 if (eof) {$x++;}
29}
30if ($x == 1) { print "ok 2\n"; } else { print "not ok 2\n"; }
31
32$lastpos = tell;
33
34unless (eof) { print "not ok 3\n"; } else { print "ok 3\n"; }
35
36if ($tst->seek(0,0)) { print "ok 4\n"; } else { print "not ok 4\n"; }
37
38if (eof) { print "not ok 5\n"; } else { print "ok 5\n"; }
39
40if ($firstline eq <$tst>) { print "ok 6\n"; } else { print "not ok 6\n"; }
41
42if ($secondpos == tell) { print "ok 7\n"; } else { print "not ok 7\n"; }
43
44if ($tst->seek(0,1)) { print "ok 8\n"; } else { print "not ok 8\n"; }
45
46if ($tst->eof) { print "not ok 9\n"; } else { print "ok 9\n"; }
47
48if ($secondpos == tell) { print "ok 10\n"; } else { print "not ok 10\n"; }
49
50if ($tst->seek(0,2)) { print "ok 11\n"; } else { print "not ok 11\n"; }
51
52if ($lastpos == $tst->tell) { print "ok 12\n"; } else { print "not ok 12\n"; }
53
54unless (eof) { print "not ok 13\n"; } else { print "ok 13\n"; }