changeset 51149:e2632d9d1b6e stable

tests: fill in the Windows pattern for `$EADDRNOTAVAIL$` matching This fixes test-https.t on Windows. It looks like the real error translation is "Cannot assign requested address.", and the message here is the start of a longer description, so I'm not sure why this part is emitted. But it's not worth digging into, as it's evidently the same failure.
author Matt Harbison <matt_harbison@yahoo.com>
date Sat, 02 Dec 2023 00:52:37 -0500
parents 1dd01023649d
children 8b3cc36009ec
files tests/common-pattern.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/common-pattern.py	Sat Dec 02 00:34:44 2023 -0500
+++ b/tests/common-pattern.py	Sat Dec 02 00:52:37 2023 -0500
@@ -170,6 +170,7 @@
         br'Cannot assign requested address',
         br'Can\'t assign requested address',
         # FormatMessage(WSAEADDRNOTAVAIL)
+        br'The requested address is not valid in its context',
     ),
 }