home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / perl-5.003-src.tgz / tar.out / fsf / perl / t / op / vec.t < prev    next >
Text File  |  1996-09-28  |  860b  |  25 lines

  1. #!./perl
  2.  
  3. # $RCSfile: vec.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:36 $
  4.  
  5. print "1..13\n";
  6.  
  7. print vec($foo,0,1) == 0 ? "ok 1\n" : "not ok 1\n";
  8. print length($foo) == 0 ? "ok 2\n" : "not ok 2\n";
  9. vec($foo,0,1) = 1;
  10. print length($foo) == 1 ? "ok 3\n" : "not ok 3\n";
  11. print ord($foo) == 1 ? "ok 4\n" : "not ok 4\n";
  12. print vec($foo,0,1) == 1 ? "ok 5\n" : "not ok 5\n";
  13.  
  14. print vec($foo,20,1) == 0 ? "ok 6\n" : "not ok 6\n";
  15. vec($foo,20,1) = 1;
  16. print vec($foo,20,1) == 1 ? "ok 7\n" : "not ok 7\n";
  17. print length($foo) == 3 ? "ok 8\n" : "not ok 8\n";
  18. print vec($foo,1,8) == 0 ? "ok 9\n" : "not ok 9\n";
  19. vec($foo,1,8) = 0xf1;
  20. print vec($foo,1,8) == 0xf1 ? "ok 10\n" : "not ok 10\n";
  21. print ((ord(substr($foo,1,1)) & 255) == 0xf1 ? "ok 11\n" : "not ok 11\n");
  22. print vec($foo,2,4) == 1 ? "ok 12\n" : "not ok 12\n";
  23. print vec($foo,3,4) == 15 ? "ok 13\n" : "not ok 13\n";
  24.  
  25.