The following commit has been merged in the master branch:
commit be997b71bb1c30353d0e62694cc6f8e2cb5015de
Author: Adam D. Barratt <[EMAIL PROTECTED]>
Date:   Fri Jul 4 21:46:11 2008 +0100

    Fix test-has-inconsistent-type for experimental tags

diff --git a/testset/runtests b/testset/runtests
index 9da8700..e8ed07b 100755
--- a/testset/runtests
+++ b/testset/runtests
@@ -180,8 +180,12 @@ for my $desc_file (<$LINTIAN_ROOT/checks/*.desc>) {
            }
 
            $tags{$i->{'tag'}}{'desc_file'} = $desc_file;
-           $tags{$i->{'tag'}}{'desc_type'} = $i->{'type'} ||
-               $Tags::sev_to_type[$i->{'severity'}];
+           if (exists $i->{'experimental'}) {
+               $tags{$i->{'tag'}}{'desc_type'} = "experimental";
+           } else {
+               $tags{$i->{'tag'}}{'desc_type'} = $i->{'type'} ||
+                   $Tags::sev_to_type[$i->{'severity'}];
+           }
        }
     }
 }

-- 
Debian package checker


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to