summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2023-01-01 09:48:45 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2023-01-01 09:48:45 +0000
commitcbaecb979ad04aeb7eb2fce524facc862496b8b7 (patch)
tree07af867c6445735e12a64faae80529613a47fa31 /test
parent313dcd5968cd8a02995322fa771f4d56b9f15e49 (diff)
downloadexim4-cbaecb979ad04aeb7eb2fce524facc862496b8b7.tar.gz
Testsuite: fix PID-matching for 4-digit case, in munge
Diffstat (limited to 'test')
-rwxr-xr-xtest/runtest2
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 )/;