summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Gross <colesbury@gmail.com>2024-04-03 12:29:02 (GMT)
committerGitHub <noreply@github.com>2024-04-03 12:29:02 (GMT)
commita214f55b274df9782e78e99516a372e0b800162a (patch)
treebc56a126b215da4dbd5d7d9203a3288f8faa38f7
parent33ee5cb3e92ea8798e7f1a2f3a13b92b39cee6d6 (diff)
downloadcpython-a214f55b274df9782e78e99516a372e0b800162a.zip
cpython-a214f55b274df9782e78e99516a372e0b800162a.tar.gz
cpython-a214f55b274df9782e78e99516a372e0b800162a.tar.bz2
gh-117483: Accept "Broken pipe" as valid error message in `test_wrong_cert_tls13` (GH-117484)
On macOS, the closed connection can lead to a "Broken pipe" error instead of a "Connection reset by peer" error.
-rw-r--r--Lib/test/test_ssl.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 794944a..0e50d09 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -3169,7 +3169,9 @@ class ThreadedTests(unittest.TestCase):
s.connect((HOST, server.port))
with self.assertRaisesRegex(
OSError,
- 'alert unknown ca|EOF occurred|TLSV1_ALERT_UNKNOWN_CA|closed by the remote host|Connection reset by peer'
+ 'alert unknown ca|EOF occurred|TLSV1_ALERT_UNKNOWN_CA|'
+ 'closed by the remote host|Connection reset by peer|'
+ 'Broken pipe'
):
# TLS 1.3 perform client cert exchange after handshake
s.write(b'data')