summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio
diff options
context:
space:
mode:
authorPaul Monson <paulmon@users.noreply.github.com>2019-05-15 15:38:55 -0700
committerSteve Dower <steve.dower@python.org>2019-05-15 15:38:55 -0700
commitfb7e7505ed1337bf40fa7b8b68317d1e86675a86 (patch)
tree5448f7cb8bf06f7b6c04012c1903c8934f761fd0 /Lib/test/test_asyncio
parentd9e006bcefe6fac859b1b5d741725b9a91991044 (diff)
downloadcpython-git-fb7e7505ed1337bf40fa7b8b68317d1e86675a86.tar.gz
bpo-35926: Add support for OpenSSL 1.1.1b on Windows (GH-11779)
Diffstat (limited to 'Lib/test/test_asyncio')
-rw-r--r--Lib/test/test_asyncio/test_sslproto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_sslproto.py b/Lib/test/test_asyncio/test_sslproto.py
index 7bc2ccf0bd..079b255855 100644
--- a/Lib/test/test_asyncio/test_sslproto.py
+++ b/Lib/test/test_asyncio/test_sslproto.py
@@ -497,8 +497,8 @@ class BaseStartTLS(func_tests.FunctionalTestCaseMixin):
server_context = test_utils.simple_server_sslcontext()
client_context = test_utils.simple_client_sslcontext()
- if sys.platform.startswith('freebsd'):
- # bpo-35031: Some FreeBSD buildbots fail to run this test
+ if sys.platform.startswith('freebsd') or sys.platform.startswith('win'):
+ # bpo-35031: Some FreeBSD and Windows buildbots fail to run this test
# as the eof was not being received by the server if the payload
# size is not big enough. This behaviour only appears if the
# client is using TLS1.3.