From 75808db17caf8b960b351e3408e74142f4c85aac Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:42:30 +0200 Subject: Adding upstream version 2.117.0. Signed-off-by: Daniel Baumann --- t/scripts/01-critic/bin.t | 1 + t/scripts/01-critic/lib.t | 1 + t/scripts/01-critic/private.t | 1 + t/scripts/01-critic/runner.pl | 83 ++++++++++++++++++++++++++++++++++++++ t/scripts/01-critic/test-scripts.t | 1 + 5 files changed, 87 insertions(+) create mode 120000 t/scripts/01-critic/bin.t create mode 120000 t/scripts/01-critic/lib.t create mode 120000 t/scripts/01-critic/private.t create mode 100755 t/scripts/01-critic/runner.pl create mode 120000 t/scripts/01-critic/test-scripts.t (limited to 't/scripts/01-critic') diff --git a/t/scripts/01-critic/bin.t b/t/scripts/01-critic/bin.t new file mode 120000 index 0000000..c316f2d --- /dev/null +++ b/t/scripts/01-critic/bin.t @@ -0,0 +1 @@ +runner.pl \ No newline at end of file diff --git a/t/scripts/01-critic/lib.t b/t/scripts/01-critic/lib.t new file mode 120000 index 0000000..c316f2d --- /dev/null +++ b/t/scripts/01-critic/lib.t @@ -0,0 +1 @@ +runner.pl \ No newline at end of file diff --git a/t/scripts/01-critic/private.t b/t/scripts/01-critic/private.t new file mode 120000 index 0000000..c316f2d --- /dev/null +++ b/t/scripts/01-critic/private.t @@ -0,0 +1 @@ +runner.pl \ No newline at end of file diff --git a/t/scripts/01-critic/runner.pl b/t/scripts/01-critic/runner.pl new file mode 100755 index 0000000..27f7b83 --- /dev/null +++ b/t/scripts/01-critic/runner.pl @@ -0,0 +1,83 @@ +#!/usr/bin/perl + +# Simple critic test runner that guesses it task from $0. +# NB: If you change anything in this script, consider if +# others.t need an update as well. + +use strict; +use warnings; + +use Const::Fast; +use IPC::Run3; +use POSIX qw(ENOENT); + +use + if $ENV{'LINTIAN_COVERAGE'}, 'Test::More', + 'skip_all' => 'Not needed for coverage of Lintian'; + +use Test::Lintian; +use Test::More; + +plan skip_all => 'Only UNRELEASED versions are criticised' + if should_skip(); + +eval 'use Test::Perl::Critic 1.00'; +plan skip_all => 'Test::Perl::Critic 1.00 required to run this test' if $@; + +eval 'use Perl::Tidy 20181120'; +# Actually we could just disable the perltidy check, but I am not +# sure how to do that without making it ignore our perlcriticrc file. +plan skip_all => 'Perl::Tidy 20180220 required to run this test' if $@; + +eval 'use PPIx::Regexp'; +diag('libppix-regexp-perl is needed to enable some checks') if $@; + +const my $DOT => q{.}; + +my @test_paths = program_name_to_perl_paths($0); +$ENV{'LINTIAN_BASE'} //= $DOT; +my $critic_profile = "$ENV{'LINTIAN_BASE'}/.perlcriticrc"; +Test::Perl::Critic->import(-profile => $critic_profile); + +run_critic(@test_paths); + +exit(0); + +sub run_critic { + my (@args) = @_; + + all_critic_ok(@args); + + # For some reason, perltidy has started to leave behind a + # "perltidy.LOG" which is rather annoying. Lets have the tests + # unconditionally kill those. + my $err = unlink('perltidy.LOG'); + if ($err) { + # Since this test is run in parallel, there is an + # race-condition between checking for the file and actually + # deleting. So just remove the file and ignore ENOENT + # problems. + die($err) if $err->errno != ENOENT; + } + return 1; +} + +sub should_skip { + my $skip = 1; + + my @command = qw{dpkg-parsechangelog -c0}; + my $output; + + run3(\@command, \undef, \$output); + + $skip = 0 + if $output =~ /^Distribution: UNRELEASED$/m; + + return $skip; +} + +# Local Variables: +# indent-tabs-mode: nil +# cperl-indent-level: 4 +# End: +# vim: syntax=perl sw=4 sts=4 sr et diff --git a/t/scripts/01-critic/test-scripts.t b/t/scripts/01-critic/test-scripts.t new file mode 120000 index 0000000..c316f2d --- /dev/null +++ b/t/scripts/01-critic/test-scripts.t @@ -0,0 +1 @@ +runner.pl \ No newline at end of file -- cgit v1.2.3