comparison tests/common-pattern.py @ 51942:73a43fe3e6fd

tests: use pattern matching to mask `ECONNREFUSED` messages The second and third one of these in `test-http-proxy.t` was failing on Windows. The others were found by grep and by failed tests when output was matched and an attempt was made to emit the mask pattern. The first clonebundles failure on Windows emitted: error fetching bundle: [WinError 10061] $ECONNREFUSED$ We should probably stringify that better to get rid of the "[WinError 10061]" part.
author Matt Harbison <matt_harbison@yahoo.com>
date Tue, 01 Oct 2024 21:34:44 -0400
parents e3ed64dfd8ff
children
comparison
equal deleted inserted replaced
51941:e58f02e2f6a9 51942:73a43fe3e6fd
165 # strerror() 165 # strerror()
166 br'Cannot assign requested address', 166 br'Cannot assign requested address',
167 br'Can\'t assign requested address', 167 br'Can\'t assign requested address',
168 # FormatMessage(WSAEADDRNOTAVAIL) 168 # FormatMessage(WSAEADDRNOTAVAIL)
169 br'The requested address is not valid in its context', 169 br'The requested address is not valid in its context',
170 ),
171 br'$ECONNREFUSED$': (
172 # strerror()
173 br'Connection refused',
174 # FormatMessage(WSAECONNREFUSED)
175 br'No connection could be made because the target machine actively refused it',
170 ), 176 ),
171 } 177 }
172 178
173 for replace, msgs in _errors.items(): 179 for replace, msgs in _errors.items():
174 substitutions.extend((m, replace) for m in msgs) 180 substitutions.extend((m, replace) for m in msgs)