diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2015-06-09 23:00:39 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2015-06-09 23:25:08 +0100 |
commit | b1cf8494dae6c2a6be188f056565b4ff9893a55e (patch) | |
tree | de6ce4bfc7abc1df9edbdbf654b17dd56144f622 /test/runtest | |
parent | 4af1b6cad6bbf0856e07cc99ab09257be652b819 (diff) |
Testsuite: less agressive PID-hiding
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 fbc4fc484..fcc7a972e 100755 --- a/test/runtest +++ b/test/runtest @@ -1019,6 +1019,9 @@ RESET_AFTER_EXTRA_LINE_READ: @saved = (); } + # remote port numbers vary + s/(Connection request from 127.0.0.1 port) \d{1,5}/$1 sssss/; + # Skip hosts_require_dane checks when the options # are unset, because dane ain't always there. @@ -1379,7 +1382,7 @@ $munges = { 'mainlog' => 's/ X=TLS\S+ / X=TLS_proto_and_cipher /' }, 'debug_pid' => - { 'stderr' => 's/\d{1,5}/ppppp/g' }, + { 'stderr' => 's/(^\s{0,4}|(?<=Process )|(?<=child ))\d{1,5}/ppppp/g' }, }; |