]> git.donarmstrong.com Git - bugscan.git/blob - t/test_spool_debbugs_config
add wheezy ignore test
[bugscan.git] / t / test_spool_debbugs_config
1 # -*- mode: cperl-mode; -*-
2
3 $gDefaultSeverity = "normal";
4 $gShowSeverities = "critical, grave, serious, important, normal, minor, wishlist, fixed";
5 @gStrongSeverities = ( "critical", "grave", "serious" );
6 @gSeverityList = ( "critical", "grave", "serious", "important", "normal",
7                    "minor", "wishlist", "fixed"
8                  );
9 %gObsoleteSeverities = ( fixed => 'Use the fixed tag instead.' );
10 %gSeverityDisplay = ( "critical", "Critical bugs",
11                       "grave", "Grave functionality bugs",
12                       "serious", "Serious (policy violations or makes package unfit for release)",
13                       "important", "Important bugs",
14                       "normal", "Normal bugs",
15                       "minor", "Minor bugs",
16                       "fixed", "NMU Fixed bugs",
17                       "wishlist", "Wishlist items"
18                     );
19
20 @gDefaultArchitectures = qw(i386 powerpc mips mipsel sparc amd64 alpha m68k arm armel s390 ia64 kfreebsd-i386 kfreebsd-amd64 hppa);
21
22 @gDistributions = qw(oldstable stable testing unstable experimental);
23
24 %gDistributionAliases = (experimental => 'experimental',
25                          unstable     => 'unstable',
26                          testing      => 'testing',
27                          stable       => 'stable',
28                          oldstable    => 'oldstable',
29                          sid          => 'unstable',
30                          jessie       => 'testing',
31                          wheezy       => 'stable',
32                          squeeze      => 'oldstable',
33                          #lenny        => 'oldstable',
34                          #etch         => 'oldstable',
35                          #sarge        => 'oldstable',
36                         );
37
38 $gPseudoMaintFile='/dev/null';
39 $gPseudoDescFile='/dev/null';
40 $gSpoolDir='t/test_spool';
41 $gPackageSource='t/test_spool/sources';
42 $gVersionPackagesDir='t/test_spool/versions/pkg';
43 $gVersionTimeIndex='t/test_spool/versions/indices/versions_time.idx';
44 $gVersionIndex='t/test_spool/versions/indices/versions.idx';
45 $gBinarySourceMap='t/test_spool/versions/indices/binsrc.idx';
46 $gSourceBinaryMap='t/test_spool/versions/indices/srcbin.idx';
47
48 1;