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