summaryrefslogtreecommitdiff
path: root/python/test/Ice/asyncio/test.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2021-01-07 20:42:19 +0100
committerGitHub <noreply@github.com>2021-01-07 20:42:19 +0100
commiteba3ea4801b3b643d4cb590174f2984562efe76f (patch)
tree0fcb195b663a473333a3570974260802d8309875 /python/test/Ice/asyncio/test.py
parentUse readline only when stdin is a tty (#1230) (diff)
downloadice-eba3ea4801b3b643d4cb590174f2984562efe76f.tar.bz2
ice-eba3ea4801b3b643d4cb590174f2984562efe76f.tar.xz
ice-eba3ea4801b3b643d4cb590174f2984562efe76f.zip
Fixed Ice.wrap_future cancellation bug and added asyncio test (#1229)
Diffstat (limited to 'python/test/Ice/asyncio/test.py')
-rw-r--r--python/test/Ice/asyncio/test.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/python/test/Ice/asyncio/test.py b/python/test/Ice/asyncio/test.py
new file mode 100644
index 00000000000..40ed163c546
--- /dev/null
+++ b/python/test/Ice/asyncio/test.py
@@ -0,0 +1,10 @@
+# -*- coding: utf-8 -*-
+#
+# Copyright (c) ZeroC, Inc. All rights reserved.
+#
+
+# This test doesn't support running with IceSSL, the Router object in the client process uses
+# the client certificate and fails with "unsupported certificate purpose"
+
+if sys.version_info >= (3, 5):
+ TestSuite(__name__)