File: runner.pl

package info (click to toggle)
lintian 2.128.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 70,396 kB
  • sloc: perl: 46,006; javascript: 9,151; makefile: 4,054; sh: 3,044; ansic: 705; xml: 451; python: 91; java: 15; cpp: 9; tcl: 4; lisp: 3
file content (31 lines) | stat: -rwxr-xr-x 682 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/perl

use strict;
use warnings;

use Const::Fast;
use Test::More;
use Test::Lintian;

plan skip_all => 'Not needed for coverage of Lintian'
  if $ENV{'LINTIAN_COVERAGE'};
eval 'use Test::MinimumVersion';
plan skip_all => 'Test::MinimumVersion required to run this test' if $@;

const my $DOT => q{.};

# squeeze => 5.10.1, Wheezy => 5.14.2, stretch => 5.24.1
our $REQUIRED = 'v5.24.1';

my @test_paths = program_name_to_perl_paths($0);
$ENV{'LINTIAN_BASE'} //= $DOT;

all_minimum_version_ok($REQUIRED, { paths => \@test_paths, no_plan => 1});

done_testing();

# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End:
# vim: syntax=perl sw=4 sts=4 sr et