[Python-checkins] cpython: Skip new SSL tests with IocpEventLoop

christian.heimes python-checkins at python.org
Sat Dec 7 00:09:52 CET 2013


http://hg.python.org/cpython/rev/2a9683c45f6e
changeset:   87799:2a9683c45f6e
user:        Christian Heimes <christian at cheimes.de>
date:        Sat Dec 07 00:09:45 2013 +0100
summary:
  Skip new SSL tests with IocpEventLoop

files:
  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
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1398,6 +1398,15 @@
         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()")
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list