home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / perl-5.003-base.tgz / perl-5.003-base.tar / fsf / perl / t / TEST < prev   
Text File  |  1996-03-25  |  2KB  |  113 lines

  1. #!./perl
  2.  
  3. # $RCSfile: TEST,v $$Revision: 4.1 $$Date: 92/08/07 18:27:00 $
  4.  
  5. # This is written in a peculiar style, since we're trying to avoid
  6. # most of the constructs we'll be testing for.
  7.  
  8. $| = 1;
  9.  
  10. if ($ARGV[0] eq '-v') {
  11.     $verbose = 1;
  12.     shift;
  13. }
  14.  
  15. chdir 't' if -f 't/TEST';
  16.  
  17. die "You need to run \"make test\" first to set things up.\n" 
  18.   unless -e 'perl' or -e 'perl.exe';
  19.  
  20. $ENV{EMXSHELL} = 'sh';        # For OS/2
  21.  
  22. if ($ARGV[0] eq '') {
  23.     @ARGV = split(/[ \n]/,
  24.       `echo base/*.t comp/*.t cmd/*.t io/*.t; echo op/*.t lib/*.t`);
  25. }
  26.  
  27. open(CONFIG,"../config.sh");
  28. while (<CONFIG>) {
  29.     if (/sharpbang='(.*)'/) {
  30.     $sharpbang = ($1 eq '#!');
  31.     last;
  32.     }
  33. }
  34. $sharpbang = 0 if $ENV{OS2_SHELL};        # OS/2
  35. $bad = 0;
  36. $good = 0;
  37. $total = @ARGV;
  38. while ($test = shift) {
  39.     if ($test =~ /^$/) {
  40.     next;
  41.     }
  42.     $te = $test;
  43.     chop($te);
  44.     print "$te" . '.' x (15 - length($te));
  45.     if ($sharpbang) {
  46.     open(results,"./$test |") || (print "can't run.\n");
  47.     } else {
  48.     open(script,"$test") || die "Can't run $test.\n";
  49.     $_ = <script>;
  50.     close(script);
  51.     if (/#!..perl(.*)/) {
  52.         $switch = $1;
  53.     } else {
  54.         $switch = '';
  55.     }
  56.     open(results,"./perl$switch $test |") || (print "can't run.\n");
  57.     }
  58.     $ok = 0;
  59.     $next = 0;
  60.     while (<results>) {
  61.     if ($verbose) {
  62.         print $_;
  63.     }
  64.     unless (/^#/) {
  65.         if (/^1\.\.([0-9]+)/) {
  66.         $max = $1;
  67.         $totmax += $max;
  68.         $files += 1;
  69.         $next = 1;
  70.         $ok = 1;
  71.         } else {
  72.         $next = $1, $ok = 0, last if /^not ok ([0-9]*)/;
  73.         if (/^ok (.*)/ && $1 == $next) {
  74.             $next = $next + 1;
  75.         } else {
  76.             $ok = 0;
  77.         }
  78.         }
  79.     }
  80.     }
  81.     $next = $next - 1;
  82.     if ($ok && $next == $max) {
  83.     print "ok\n";
  84.     $good = $good + 1;
  85.     } else {
  86.     $next += 1;
  87.     print "FAILED on test $next\n";
  88.     $bad = $bad + 1;
  89.     $_ = $test;
  90.     if (/^base/) {
  91.         die "Failed a basic test--cannot continue.\n";
  92.     }
  93.     }
  94. }
  95.  
  96. if ($bad == 0) {
  97.     if ($ok) {
  98.     print "All tests successful.\n";
  99.     } else {
  100.     die "FAILED--no tests were run for some reason.\n";
  101.     }
  102. } else {
  103.     $pct = sprintf("%.2f", $good / $total * 100);
  104.     if ($bad == 1) {
  105.     warn "Failed 1 test, $pct% okay.\n";
  106.     } else {
  107.     die "Failed $bad/$total tests, $pct% okay.\n";
  108.     }
  109. }
  110. ($user,$sys,$cuser,$csys) = times;
  111. print sprintf("u=%g  s=%g  cu=%g  cs=%g  files=%d  tests=%d\n",
  112.     $user,$sys,$cuser,$csys,$files,$totmax);
  113.