summaryrefslogtreecommitdiff
path: root/t/op.read
blob: b219917a68713726c19b41fb52d98a9dc9fa9ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!./perl

# $Header: op.read,v 3.0 89/10/18 15:30:58 lwall Locked $

print "1..4\n";


open(FOO,'op.read') || open(FOO,'t/op.read') || die "Can't open op.read";
seek(FOO,4,0);
$got = read(FOO,$buf,4);

print ($got == 4 ? "ok 1\n" : "not ok 1\n");
print ($buf eq "perl" ? "ok 2\n" : "not ok 2 :$buf:\n");

seek(FOO,20000,0);
$got = read(FOO,$buf,4);

print ($got == 0 ? "ok 3\n" : "not ok 3\n");
print ($buf eq "" ? "ok 4\n" : "not ok 4\n");