summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2017-03-18 15:34:33 +0100
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2017-03-18 23:56:21 +0100
commit45f35410b4bdd59614dd9811ee99aea6a5d1164c (patch)
treeb145cc563161cd446bd1f55600c858cf2b38af32 /test/lib
parent8d909960c69378a54d9493586d74ba361948bf49 (diff)
downloadexim4-45f35410b4bdd59614dd9811ee99aea6a5d1164c.tar.gz
Testsuite: fixup testsuite test about flavours
Support for flavours isn't dropped, but currently we do not have flavour specific files.
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/Exim/Runtest.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/Exim/Runtest.pm b/test/lib/Exim/Runtest.pm
index 537cea1e9..e41a29c8c 100644
--- a/test/lib/Exim/Runtest.pm
+++ b/test/lib/Exim/Runtest.pm
@@ -137,7 +137,7 @@ sub flavour {
sub flavours {
my %h = map { /\.(\S+)$/, 1 }
- glob('stdout/*.*'), glob('stderr/*.*');
+ grep { !/\.orig$/ } glob('stdout/*.*'), glob('stderr/*.*');
return sort keys %h;
}