diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2023-01-01 09:48:45 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2023-01-01 09:48:45 +0000 |
commit | cbaecb979ad04aeb7eb2fce524facc862496b8b7 (patch) | |
tree | 07af867c6445735e12a64faae80529613a47fa31 /test/runtest | |
parent | 313dcd5968cd8a02995322fa771f4d56b9f15e49 (diff) |
Testsuite: fix PID-matching for 4-digit case, in munge
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtest b/test/runtest index 5ae880e0a..5796cedf2 100755 --- a/test/runtest +++ b/test/runtest @@ -1078,7 +1078,7 @@ RESET_AFTER_EXTRA_LINE_READ: /x; # 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; + s/^\s*(\d{4,})\s(?!(?:previous message|in\s|bytes remain in|SMTP accept process running))/new_value($1, "p%s", \$next_pid) . ' '/e; # Debugging lines for Exim terminations and process-generation next if /(?:postfork: | fork(?:ing|ed) for )/; |