X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/b6d223625238f89971d94711d6c5fc240ba2cd72..37acd760db257c134df6dad0fbb730b24b4b7e19:/test/runtest diff --git a/test/runtest b/test/runtest index dab23acec..9d034169c 100755 --- a/test/runtest +++ b/test/runtest @@ -1,6 +1,6 @@ #! /usr/bin/perl -w -# $Cambridge: exim/test/runtest,v 1.30 2007/08/30 13:35:29 ph10 Exp $ +# $Cambridge: exim/test/runtest,v 1.35 2010/06/05 01:58:39 jetmore Exp $ ############################################################################### # This is the controlling script for the "new" test suite for Exim. It should # @@ -23,9 +23,9 @@ use Socket; # Start by initializing some global variables -$testversion = "4.68 (23-Aug-07)"; +$testversion = "4.72 (02-Jun-10)"; -$cf = "bin/cf"; +$cf = "bin/cf -exact"; $cr = "\r"; $debug = 0; $force_update = 0; @@ -548,6 +548,9 @@ while() # The amount of space between "host" and the address in verification output # depends on the length of the host name. We therefore reduce it to one space # for all of them. + # Also, the length of space at the end of the host line is dependent + # on the length of the longest line, so strip it also on otherwise + # un-rewritten lines like localhost s/^\s+host\s(\S+)\s+(\S+)/ host $1 $2/; s/^\s+(host\s\S+\s\S+)\s+(port=.*)/ host $1 $2/; @@ -558,6 +561,7 @@ while() s/\b\Q$parm_ipv6\E\b/ip6:ip6:ip6:ip6:ip6:ip6:ip6:ip6/g; s/\b\Q$parm_ipv4r\E\b/ip4-reverse/g; s/\b\Q$parm_ipv6r\E\b/ip6-reverse/g; + s/^(\s+host\s\S+\s+\[\S+\]) +$/$1 /; # ======== Test network IP addresses ======== @@ -723,6 +727,14 @@ while() 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]+$/; + + # drop openssl version strings + next if /OpenSSL compile-time version: OpenSSL \d+[\.\da-z]+/; + next if /OpenSSL runtime version: OpenSSL \d+[\.\da-z]+/; + # We have to omit the localhost ::1 address so that all is well in # the IPv4-only case. @@ -730,6 +742,9 @@ while() 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\)/;