X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/48f733ce6670fb161d3ae194340f94d4d77eb69b..4cb45b3ef6304b8cca4818859196795a9f142b42:/test/runtest?ds=inline diff --git a/test/runtest b/test/runtest index 3b936de3d..d3cea20a8 100755 --- a/test/runtest +++ b/test/runtest @@ -1205,6 +1205,9 @@ RESET_AFTER_EXTRA_LINE_READ: # Lines with a leading pid. Only handle >= 4-digit PIDs to avoid converting SMTP respose codes s/^\s*(\d{4,})\s(?!(?:previous message|in\s|bytes remain in|SMTP accept process running))/new_value($1, "p%s", \$next_pid) . ' '/e; + # Connection IDs + s/connection_id: \K(\d+)$/new_value($1, "conn%s", \$next_conn)/e; + # Debugging lines for Exim terminations and process-generation next if /(?:postfork: | fork(?:ing|ed) for )/; @@ -4608,6 +4611,7 @@ foreach $test (@test_list) $next_msgid = "aX"; $next_pid = 1234; $next_port = 1111; + $next_conn = 1111; $message_skip = 0; $msglog_skip = 0; $munge_skip = 0;