tests: fill in the Windows pattern for `$EADDRNOTAVAIL$` matching stable
authorMatt Harbison <matt_harbison@yahoo.com>
Sat, 02 Dec 2023 00:52:37 -0500
branchstable
changeset 51133 e2632d9d1b6e
parent 51132 1dd01023649d
child 51134 8b3cc36009ec
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.
tests/common-pattern.py
--- 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',
     ),
 }