summaryrefslogtreecommitdiff
path: root/scripts/tests/Ice/udp.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/tests/Ice/udp.py')
-rw-r--r--scripts/tests/Ice/udp.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/tests/Ice/udp.py b/scripts/tests/Ice/udp.py
index 214d9aaf8f3..ce62874cb76 100644
--- a/scripts/tests/Ice/udp.py
+++ b/scripts/tests/Ice/udp.py
@@ -14,6 +14,11 @@ from Util import *
#
servers=range(0, 5)
+#
+# With UWP, we can't run the UDP tests with the C++ servers (used when SSL is enabled).
+#
+options=lambda current: { "protocol": ["tcp", "ws"] } if current.config.uwp else {}
+
TestSuite(__name__, [
ClientServerTestCase(client=Client(args=[5]), servers=[Server(args=[i], ready="McastTestAdapter") for i in servers])
-], multihost=False)
+], multihost=False, options=options)