diff tests/common-pattern.py @ 40881:8695fbe17f7c

tests: update network related errors for Debian 9 We have a CI job that runs the Mercurial tests in parallel. Some of the network related failures seems to be different on the environment. Oddly, those failures happens only when running the tests in parallel, not when running the test file only. I have no idea how to get the windows formatted message for the error, if someone could give me an hand, I will update this changeset with the value. Differential Revision: https://phab.mercurial-scm.org/D5401
author Boris Feld <boris.feld@octobus.net>
date Mon, 10 Dec 2018 10:21:08 +0100
parents 4bd6e444c76f
children c7652f7440d9
line wrap: on
line diff
--- a/tests/common-pattern.py	Sun Nov 04 16:57:05 2018 +0900
+++ b/tests/common-pattern.py	Mon Dec 10 10:21:08 2018 +0100
@@ -143,6 +143,12 @@
         br'Only one usage of each socket address'
         br' \(protocol/network address/port\) is normally permitted',
     ),
+    br'$EADDRNOTAVAIL$': (
+        # strerror()
+        br'Cannot assign requested address',
+
+        # FormatMessage(WSAEADDRNOTAVAIL)
+    )
 }
 
 for replace, msgs in _errors.items():