diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-03-28 16:06:48 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-03-28 16:06:48 +0000 |
commit | 836c3e4102dae52604590a6674bec10087dbf17e (patch) | |
tree | 1e8b2310eee5bd15f979eee92248ce3199425ef5 /test/runtest | |
parent | d06f582fd0714042fcc110c9e0f7665657bb9da5 (diff) |
Testsuite: ignore fakens fork debug line, avoiding ipv6-support differences
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/runtest b/test/runtest index c381d6d68..6e6ed4092 100755 --- a/test/runtest +++ b/test/runtest @@ -1047,9 +1047,12 @@ RESET_AFTER_EXTRA_LINE_READ: s/(?<=^>>>>>>>>>>>>>>>> Exim pid=)\d+(?= terminating)/pppp/; s/^(proxy-proc \w{5}-pid) \d+$/$1 pppp/; s/^(?:\s*\d+ )(exec .* -oPX)$/pppp $1/; - s/^(?:\s*\d+ )(postfork: )/pppp $1/; + next if /postfork: /; + # ipv6-enabled platforms do more loookup, for AAAAs - so ignore the forking + next if / fork(?:ing|ed) for fakens-search/; s/ forked for [^:]+: \K\d+/npppp/; + # IP address lookups use gethostbyname() when IPv6 is not supported, # and gethostbyname2() or getipnodebyname() when it is. |