home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / language / perl / Test / T / Op / Read < prev    next >
Encoding:
Text File  |  1990-06-11  |  441 b   |  20 lines

  1. #!./perl
  2.  
  3. # $Header: op.read,v 3.0 89/10/18 15:30:58 lwall Locked $
  4.  
  5. print "1..4\n";
  6.  
  7.  
  8. open(FOO,'op.read') || open(FOO,'t.op.read') || die "Can't open op.read";
  9. seek(FOO,4,0);
  10. $got = read(FOO,$buf,4);
  11.  
  12. print ($got == 4 ? "ok 1\n" : "not ok 1\n");
  13. print ($buf eq "perl" ? "ok 2\n" : "not ok 2 :$buf:\n");
  14.  
  15. seek(FOO,20000,0);
  16. $got = read(FOO,$buf,4);
  17.  
  18. print ($got == 0 ? "ok 3\n" : "not ok 3\n");
  19. print ($buf eq "" ? "ok 4\n" : "not ok 4\n");
  20.