diff options
author | Christian Heimes <christian@cheimes.de> | 2013-12-06 23:09:45 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-12-06 23:09:45 (GMT) |
commit | b82c915fa2e6f01b6ab458f36f36fad2a7cc6c1e (patch) | |
tree | 32235a548cea27317ce9b2805bf58f4440fcaef0 | |
parent | aa15276ee9554922919df1eb1a78826a102fb321 (diff) | |
download | cpython-b82c915fa2e6f01b6ab458f36f36fad2a7cc6c1e.zip cpython-b82c915fa2e6f01b6ab458f36f36fad2a7cc6c1e.tar.gz cpython-b82c915fa2e6f01b6ab458f36f36fad2a7cc6c1e.tar.bz2 |
Skip new SSL tests with IocpEventLoop
-rw-r--r-- | Lib/test/test_asyncio/test_events.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index d3f32d7..f890878 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -1398,6 +1398,15 @@ if sys.platform == 'win32': def test_create_server_ssl(self): raise unittest.SkipTest("IocpEventLoop imcompatible with SSL") + def test_create_server_ssl_verify_failed(self): + raise unittest.SkipTest("IocpEventLoop imcompatible with SSL") + + def test_create_server_ssl_match_failed(self): + raise unittest.SkipTest("IocpEventLoop imcompatible with SSL") + + def test_create_server_ssl_verified(self): + raise unittest.SkipTest("IocpEventLoop imcompatible with SSL") + def test_reader_callback(self): raise unittest.SkipTest("IocpEventLoop does not have add_reader()") |