diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2022-12-20 20:31:58 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2022-12-21 10:28:41 +0000 |
commit | 2b019b1e3a01f0aa8794807d9c7e2a14df1e48b9 (patch) | |
tree | a0b649d180685387060af74f61c6f0b747e654e8 /test/runtest | |
parent | c7bec9723a721f566c67df0a526e4de18b723659 (diff) |
Testsuite: avoid munge false-pos spotting a new PID
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtest b/test/runtest index 3cc534c98..38e03b3ac 100755 --- a/test/runtest +++ b/test/runtest @@ -342,7 +342,7 @@ return @yield; # into the same standard values throughout the data from a single test. # Message ids get this treatment (can't be made reliable for times), and # times in dumped retry databases are also handled in a special way, as are -# incoming port numbers. +# incoming port numbers and PIDs. # On entry to the subroutine, the file to write to is already opened with the # name MUNGED. The input file name is the only argument to the subroutine. @@ -1077,7 +1077,7 @@ RESET_AFTER_EXTRA_LINE_READ: /x; # Lines with a leading pid - s/^(\d+)\s(?!(?:previous message|in\s))/new_value($1, "p%s", \$next_pid) . ' '/e; + s/^(\d+)\s(?!(?:previous message|in\s|bytes remain in))/new_value($1, "p%s", \$next_pid) . ' '/e; # Debugging lines for Exim terminations and process-generation |