]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/data/perl.conf
Use new support for SPDX check exclusions
[kerberos/krb5-strength.git] / tests / data / perl.conf
1 # Configuration for Perl tests.  -*- perl -*-
2
3 # Ignore the script in cracklib for Perl style checking.  This is verbatim
4 # from CrackLib and isn't useful to rewrite.
5 @CRITIC_IGNORE = qw(cracklib);
6 @SPDX_IGNORE = (qr{ \A cracklib/ }xms);
7 @STRICT_IGNORE = qw(cracklib);
8
9 # Default minimum version requirement for included Perl scripts.
10 $MINIMUM_VERSION = '5.010';
11
12 # The Heimdal history implementation uses a bunch of modules, but may not be
13 # of interest to all users.  Skip strict testing if its prerequisites aren't
14 # installed.
15 @STRICT_PREREQ = qw(
16   DB_File::Lock Crypt::PBKDF2 Getopt::Long::Descriptive IPC::Run JSON
17   Readonly
18 );
19
20 # File must end with this line.
21 1;