home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / Preinstalled MacPerl (FAT) / t / io / tell.t < prev   
Encoding:
Text File  |  1995-10-31  |  1.2 KB  |  46 lines  |  [TEXT/McPL]

  1. #!./perl
  2.  
  3. # $RCSfile: tell.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:33 $
  4.  
  5. print "1..13\n";
  6.  
  7. $TST = 'tst';
  8.  
  9. # open($TST, '../Configure') || (die "Can't open ../Configure");
  10. open($TST, '::Makefile') || open($TST, ":::Makefile") || (die "Can't open Makefile");
  11.  
  12. if (eof(tst)) { print "not ok 1\n"; } else { print "ok 1\n"; }
  13.  
  14. $firstline = <$TST>;
  15. $secondpos = tell;
  16.  
  17. $x = 0;
  18. while (<tst>) {
  19.     if (eof) {$x++;}
  20. }
  21. if ($x == 1) { print "ok 2\n"; } else { print "not ok 2\n"; }
  22.  
  23. $lastpos = tell;
  24.  
  25. unless (eof) { print "not ok 3\n"; } else { print "ok 3\n"; }
  26.  
  27. if (seek($TST,0,0)) { print "ok 4\n"; } else { print "not ok 4\n"; }
  28.  
  29. if (eof) { print "not ok 5\n"; } else { print "ok 5\n"; }
  30.  
  31. if ($firstline eq <tst>) { print "ok 6\n"; } else { print "not ok 6\n"; }
  32.  
  33. if ($secondpos == tell) { print "ok 7\n"; } else { print "not ok 7\n"; }
  34.  
  35. if (seek(tst,0,1)) { print "ok 8\n"; } else { print "not ok 8\n"; }
  36.  
  37. if (eof($TST)) { print "not ok 9\n"; } else { print "ok 9\n"; }
  38.  
  39. if ($secondpos == tell) { print "ok 10\n"; } else { print "not ok 10\n"; }
  40.  
  41. if (seek(tst,0,2)) { print "ok 11\n"; } else { print "not ok 11\n"; }
  42.  
  43. if ($lastpos == tell) { print "ok 12\n"; } else { print "not ok 12\n"; }
  44.  
  45. unless (eof) { print "not ok 13\n"; } else { print "ok 13\n"; }
  46.