git://git.exim.org
/
users
/
heiko
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
ca5aa72
)
Better filtering of debug in test suite
author
Nigel Metheringham
<nigel@exim.org>
Thu, 19 Nov 2009 18:51:11 +0000
(18:51 +0000)
committer
Nigel Metheringham
<nigel@exim.org>
Thu, 19 Nov 2009 18:51:11 +0000
(18:51 +0000)
test/runtest
patch
|
blob
|
history
diff --git
a/test/runtest
b/test/runtest
index d0caf0df3da4cc52105d826e7132a61ee0ccc35e..2af47eb62281788b19bb4acd5a21474cddea1070 100755
(executable)
--- a/
test/runtest
+++ b/
test/runtest
@@
-1,6
+1,6
@@
#! /usr/bin/perl -w
#! /usr/bin/perl -w
-# $Cambridge: exim/test/runtest,v 1.3
1 2009/10/14 11:34:57
nm4 Exp $
+# $Cambridge: exim/test/runtest,v 1.3
2 2009/11/19 18:51:11
nm4 Exp $
###############################################################################
# This is the controlling script for the "new" test suite for Exim. It should #
###############################################################################
# This is the controlling script for the "new" test suite for Exim. It should #
@@
-723,6
+723,10
@@
while(<IN>)
s/\bgethostbyname2?|\bgetipnodebyname/get[host|ipnode]byname[2]/;
s/\bgethostbyname2?|\bgetipnodebyname/get[host|ipnode]byname[2]/;
+ # drop gnutls version strings
+ next if /GnuTLS compile-time version: \d+[\.\d]+$/;
+ next if /GnuTLS runtime version: \d+[\.\d]+$/;
+
# We have to omit the localhost ::1 address so that all is well in
# the IPv4-only case.
# We have to omit the localhost ::1 address so that all is well in
# the IPv4-only case.
@@
-730,6
+734,9
@@
while(<IN>)
if (/looked up these IP addresses/);
next if /name=localhost address=::1/;
if (/looked up these IP addresses/);
next if /name=localhost address=::1/;
+ # drop pdkim debugging header
+ next if /^PDKIM <<<<<<<<<<<<<<<<<<<<<<<<<<<<<+$/;
+
# Various other IPv6 lines must be omitted too
next if /using host_fake_gethostbyname for \S+ \(IPv6\)/;
# Various other IPv6 lines must be omitted too
next if /using host_fake_gethostbyname for \S+ \(IPv6\)/;