[exim-cvs] Testsuite: fix debug stream munging for non-autoc…

Inizio della pagina
Delete this message
Reply to this message
Autore: Exim Git Commits Mailing List
Data:  
To: exim-cvs
Oggetto: [exim-cvs] Testsuite: fix debug stream munging for non-autocreate DBM variants, and for no TFO support
Gitweb: https://git.exim.org/exim.git/commitdiff/ca9be0dc61a92a34325d83d72601e47b10e38f09
Commit:     ca9be0dc61a92a34325d83d72601e47b10e38f09
Parent:     d7625a4d832fb661474dc89c656b05dc42397a83
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Sun Oct 21 23:37:14 2018 +0100
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Sun Oct 21 23:37:14 2018 +0100


    Testsuite: fix debug stream munging for non-autocreate DBM variants, and for no TFO support
---
 test/runtest                 | 13 +++++++++----
 test/scripts/0000-Basic/0609 |  2 ++
 2 files changed, 11 insertions(+), 4 deletions(-)


diff --git a/test/runtest b/test/runtest
index e5f2a04..7c89f10 100755
--- a/test/runtest
+++ b/test/runtest
@@ -1075,12 +1075,14 @@ RESET_AFTER_EXTRA_LINE_READ:
     # Some DBM libraries seem to make DBM files on opening with O_RDWR without
     # O_CREAT; other's don't. In the latter case there is some debugging output
     # which is not present in the former. Skip the relevant lines (there are
-    # two of them).
+    # three of them).


-    if (/TESTSUITE\/spool\/db\/\S+ appears not to exist: trying to create/)
+    if (/returned from EXIM_DBOPEN: \(nil\)/)
       {
-      $_ = <IN>;
-      next;
+      $_ .= <IN>;
+      s?\Q$parm_cwd\E?TESTSUITE?g;
+      if (/TESTSUITE\/spool\/db\/\S+ appears not to exist: trying to create/)
+    { $_ = <IN>; next; }
       }


     # Some tests turn on +expand debugging to check on expansions.
@@ -1113,6 +1115,9 @@ RESET_AFTER_EXTRA_LINE_READ:
     # Experimental_REQUIRETLS
     next if / in tls_advertise_requiretls?\? no \(end of list\)/;


+    # TCP Fast Open
+    next if /^setsockopt FASTOPEN: Network Error/;
+
     # Environment cleaning
     next if /\w+ in keep_environment\? (yes|no)/;


diff --git a/test/scripts/0000-Basic/0609 b/test/scripts/0000-Basic/0609
index 84ab89d..ea83bbf 100644
--- a/test/scripts/0000-Basic/0609
+++ b/test/scripts/0000-Basic/0609
@@ -3,6 +3,8 @@ munge debug_pid
need_ipv4
#
# We want the debug note of a truncated delay
+# "delay cancelled by peer close"
+#
exim -d-all+acl -DSERVER=server -odq -bd -oX PORT_D
****
#