Author: leo
Date: Tue Sep 27 08:01:28 2005
New Revision: 9256

Modified:
   branches/leo-ctx5/t/src/opcode-doc.t
Log:
skip DELETED ops in test

Modified: branches/leo-ctx5/t/src/opcode-doc.t
==============================================================================
--- branches/leo-ctx5/t/src/opcode-doc.t        (original)
+++ branches/leo-ctx5/t/src/opcode-doc.t        Tue Sep 27 08:01:28 2005
@@ -31,9 +31,10 @@ sub slurp {
 sub analyse {
     my ($filename, $ops) = @_;
     my %file;
-    
+
     foreach my $op ( keys %$ops ) {
         my $args = $ops->{$op};
+        next if $op =~ /^DELETED/;
         foreach my $arg ( keys %$args ) {
             my $e = $args->{$arg};
             my $val = $e->{status};
@@ -53,7 +54,7 @@ sub check_op_doc {
     my @file = slurp( $filename );
     my %op;
     my $lineno = 0;
-    
+
     foreach my $line (@file) {
         ++$lineno;
         if (my ($item) = $line =~ /^=item\s+(.+\(.*)/) {

Reply via email to