[exim-cvs] cvs commit: exim/exim-test runtest

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Nigel Metheringham
Data:  
Para: exim-cvs
Asunto: [exim-cvs] cvs commit: exim/exim-test runtest
nm4 2009/11/19 18:51:11 GMT

  Modified files:
    exim-test            runtest 
  Log:
  Better filtering of debug in test suite


  Revision  Changes    Path
  1.32      +7 -0      exim/exim-test/runtest


  Index: runtest
  ===================================================================
  RCS file: /home/cvs/exim/exim-test/runtest,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- runtest    14 Oct 2009 11:34:57 -0000    1.31
  +++ runtest    19 Nov 2009 18:51:11 -0000    1.32
  @@ -1,6 +1,6 @@
   #! /usr/bin/perl -w


-# $Cambridge: exim/exim-test/runtest,v 1.31 2009/10/14 11:34:57 nm4 Exp $
+# $Cambridge: exim/exim-test/runtest,v 1.32 2009/11/19 18:51:11 nm4 Exp $

###############################################################################
# This is the controlling script for the "new" test suite for Exim. It should #
@@ -723,6 +723,10 @@

       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.


  @@ -730,6 +734,9 @@
         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\)/;