diff options
author | John Jetmore <jj33@pobox.com> | 2010-06-03 02:42:19 +0000 |
---|---|---|
committer | John Jetmore <jj33@pobox.com> | 2010-06-03 02:42:19 +0000 |
commit | 64fa3c1fbfc9cc7e93a095d2c836b9604da34d03 (patch) | |
tree | 5aa80bdd2175e2cbac5885af281f34ac2fddabec /test/runtest | |
parent | 8f4259472564a5bcde13566eec78eb61a59f445b (diff) |
updates to test suite - roll back lookup changes after dkim lookup removed, strip OpenSSL version info
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/runtest b/test/runtest index affd82ad4..5b852d6ee 100755 --- a/test/runtest +++ b/test/runtest @@ -1,6 +1,6 @@ #! /usr/bin/perl -w -# $Cambridge: exim/test/runtest,v 1.33 2009/11/23 13:22:05 nm4 Exp $ +# $Cambridge: exim/test/runtest,v 1.34 2010/06/03 02:42:19 jetmore Exp $ ############################################################################### # This is the controlling script for the "new" test suite for Exim. It should # @@ -23,7 +23,7 @@ use Socket; # Start by initializing some global variables -$testversion = "4.71 (23-Nov-09)"; +$testversion = "4.72 (02-Jun-10)"; $cf = "bin/cf"; $cr = "\r"; @@ -727,6 +727,10 @@ while(<IN>) 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. |