From: Christian Heimes Date: Fri, 6 Dec 2013 23:09:45 +0000 (+0100) Subject: Skip new SSL tests with IocpEventLoop X-Git-Tag: v3.4.0b2~318 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b82c915fa2e6f01b6ab458f36f36fad2a7cc6c1e;p=thirdparty%2FPython%2Fcpython.git Skip new SSL tests with IocpEventLoop --- diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index d3f32d75b131..f8908782aeaa 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()")