X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Flib%2FExim%2FRuntest.pm;h=7ba079051c9e88fb9515408e303f57428f996606;hb=4b01271fa595a08e68ba8c58d6404e83623aa9c8;hp=537cea1e9513df139f68515be3261d18810c574e;hpb=0929ce9ca518b6987b63cf8659338ca434e07d9b;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/test/lib/Exim/Runtest.pm b/test/lib/Exim/Runtest.pm index 537cea1e9..7ba079051 100644 --- a/test/lib/Exim/Runtest.pm +++ b/test/lib/Exim/Runtest.pm @@ -119,6 +119,10 @@ sub flavour { $etc = shift; } + if (open(my $f, '-|', 'openssl version')) { + <$f> =~ /1.1.1/ && return "openssl_1_1_1"; + } + if (open(my $f, '<', "$etc/os-release")) { local $_ = join '', <$f>; my ($id) = /^ID="?(.*?)"?\s*$/m; @@ -137,7 +141,7 @@ sub flavour { sub flavours { my %h = map { /\.(\S+)$/, 1 } - glob('stdout/*.*'), glob('stderr/*.*'); + grep { !/\.orig$/ } glob('stdout/*.*'), glob('stderr/*.*'), glob('log/*.*'); return sort keys %h; } @@ -174,7 +178,7 @@ typical files in the F directory. =item B() -Return a list of available flavours. It does so by scanning F and +Return a list of available flavours. It does so by scanning F, F and F for I files (extensions after the numerical prefix. =back